Skip to Main Content
IBM Data Platform Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data Platform organization. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:


Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,


Post your ideas

Post ideas and requests to enhance a product or service. Take a look at ideas others have posted and upvote them if they matter to you,

  1. Post an idea

  2. Upvote ideas that matter most to you

  3. Get feedback from the IBM team to refine your idea


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

IBM Employees should enter Ideas at https://ideas.ibm.com



Status Needs more information
Workspace Spectrum LSF
Components Reporting/Explorer
Created by Guest
Created on Mar 10, 2026

Extend visibility of queue status for users

Our HPC users have requested the ability to see what is causing their jobs to pend in more detail. This includes what jobs/how may jobs are ahead of their in the queue, what resources their jobs are constrained on, etc. with other reasons their jobs might be delayed.

We would find it useful if this were available in LSF Explorer, but it could also be integrated into bjobs -p.

Needed By Not sure -- Just thought it was cool
  • Admin
    Bill McMillan
    Jun 20, 2026
    The pending job list, as displayed, is the order at that moment in time - which will dynamically change based on the scheduling policies configured (fairshare, sla etc)
    -p -p1 -p2 -p3 will provide more detailed information.

    As an admin, you do have the option to dump the internal data structures for a pending job, which will provide all the associated limits/constraints affecting the job. This is a relatively expensive operation, hence why it is not available to end users. We are considering making a beautified version of this available via an AI agent in the future.


    bash-4.4$ bsub -n4 sleep 10000
    Job <427> is submitted to default queue <normal>.
    bash-4.4$ badmin job diagnose -f /tmp/job-427 427
    Job diagnostics requested
    bash-4.4$ cat /tmp/job-427
    {
    "date":"May 29 09:42:02 2026",
    "jobID":427,
    "candidateHosts":[
    {
    "name":"lsf-dev1.fyre.ibm.com"
    }
    ],
    "dismissedHosts":[
    ],
    "scheduling":{
    "normal":{
    "consideredHosts":[
    {
    "name":"lsf-dev1.fyre.ibm.com",
    "numTasks":"3",
    "allocationAllowed":"N",
    "reason":"Not enough processors to meet the job's spanning requirement",
    "limits":[
    {
    "resName":"slots",
    "reqAmt":3,
    "availAmt":3,
    "reason":"Not enough job slot(s)"
    }
    ]
    }
    ]
    }
    }