Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PbsPro uses a different stats for completed jobs #908

Closed
pditommaso opened this issue Oct 25, 2018 · 3 comments
Closed

PbsPro uses a different stats for completed jobs #908

pditommaso opened this issue Oct 25, 2018 · 3 comments

Comments

@pditommaso
Copy link
Member

pditommaso commented Oct 25, 2018

As commented by @lorenzgerber, according to PBSRefGuide 18.2. the state for completed jobs changed to F (in PBS Executor it's C). See table below.
screenshot from 2018-10-24 16-28-57

This requires that status code mapping table in the PbsProExecutor as below:

    static protected Map DECODE_STATUS = [
            'F': QueueStatus.DONE,
            'R': QueueStatus.RUNNING,
            'Q': QueueStatus.PENDING,
            'H': QueueStatus.HOLD,
            'S': QueueStatus.HOLD
    ]
@pditommaso
Copy link
Member Author

@lorenzgerber please review it at your convenience. thanks.

@lorenzgerber
Copy link
Contributor

@pditommaso tested on a PBS Professional 18.1 setup, everything works fine for now. Thanks.

@pditommaso
Copy link
Member Author

Included in version 18.12.0-edge.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants