Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Interface 1: max_job_sequence_idserver attribute

    • Visibility: Public
    • Change Control: Stable
    • Details: Using this attribute admin can change max job sequence id in the server. Once max job sequence id reaches to the max value(999999999999) then server will rollback the job sequence id to 0 (i.e next job or reservation id). Default value of the attribute will be 9999999. Max value for the attribute should be <= 999999999999 and Min value for this attribute should be > 0. If the max_job_sequence_id is set to something smaller than current max_job_sequence_id then it will wrap to 0(ZERO).
      • Default value of the attribute will be 9999999.
      • Max value for the attribute is "999999999999"
      • Min value for the attribute is "9999999"
      • max_job_sequence_id attribute value can be anything between 9999999 to 999999999999 only.
  • Log/Error messages:
    • When non privileged user try to set max_job_sequence_id then following error message will be displayed by qmgr:
      • qmgr obj= svr=default: Unauthorized Request 
        qmgr: Error (15007) returned from server
    • When admin try to set invalid value for max_job_sequence_id then following error message will be displayed by qmgr:
      • qmgr obj= svr=default: Illegal attribute or resource valueCannot set max_job_sequence_id < 9999999, or > 999999999999

      • qmgr: Error (1501415225) returned from server

    • Following log message will be added to server logs when admin sets max_job_sequence_id:
      • Log event: PBSEVENT_ADMIN
      • Log level: LOG_NOTICE
      • Log message:svr_max_job_sequence_id set to val <value>
    • Following log message will be added to server logs when admin unset max_job_sequence_id:
      • Log event: PBSEVENT_ADMIN
      • Log level: LOG_NOTICE
      • Log message:svr_max_job_sequence_id reverting back to default val <value>

...