Skip to Main Content
IBM Data and AI Ideas Portal for Customers


This portal is to open public enhancement requests against products and services offered by the IBM Data & AI 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 Not under consideration
Workspace Spectrum LSF
Created by Guest
Created on May 18, 2017

job dependency on requeable job.

Hi, We are working on a workflow enhancement but are facing a potential issue with how LSF handles job dependencies of requeable jobs. Here is the scenario: - there is JOBARRAY[1-10] - there is "sync" job (single) which is dependent on ended(JOBARRAY) All JOBARRAY is requeable. If any index fails due to TERM_MEMLIMIT, we want the post-exec to requeue the job with higher memory request. The post-exec would do 3 simple things: brequeue -H , bmod - R "rusage[mem=xxxx]" , bresume The main goal here is to requeue jobs that fail due to TERM_MEMLIMIT with a higher memory request. The issue we suspect is if let's say JOBARRAY[1-9] all completed DONE, but only element JOBARRAY[10] is running. Then JOBARRAY[10] fails due to memory limit, then the "sync" job spawns off because dependency condition ended() is fulfilled, but really we want it to wait because JOBARRAY[10] will still requeue itself from post-exec. How are some ways to get around this? The other request I have within this is what is the simplest way to requeue a TERM_MEMLIMIT job. Right now I am having to do brequeue -H into PSUSP state because I don't want that job to dispatch again with same memory request, then do bmod, then do bresume to move it from PSUSP to PEND. Is there an easy way to do brequeue and increase memory request in one command?

  • Guest
    Reply
    |
    Apr 5, 2018

    From previous discussions with the workflow owners, it appears they had found a suitable workaround solution.

    This RFE is not required for us any longer.

  • Guest
    Reply
    |
    Apr 4, 2018

    No response from submitter, closing.

  • Guest
    Reply
    |
    May 31, 2017

    Do you really mean ended()?
    With ended(), the dependent job will run if the previous jobs succeed or fail.
    If you want the sync job to wait for all the predecessors to complete successfully, then done() would be more appropriate.