.\" Copyright (C) 1994-2018 Altair Engineering, Inc. .\" For more information, contact Altair at www.altair.com. .\" .\" This file is part of the PBS Professional ("PBS Pro") software. .\" .\" Open Source License Information: .\" .\" PBS Pro is free software. You can redistribute it and/or modify it under the .\" terms of the GNU Affero General Public License as published by the Free .\" Software Foundation, either version 3 of the License, or (at your option) any .\" later version. .\" .\" PBS Pro is distributed in the hope that it will be useful, but WITHOUT ANY .\" WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS .\" FOR A PARTICULAR PURPOSE. .\" See the GNU Affero General Public License for more details. .\" .\" You should have received a copy of the GNU Affero General Public License .\" along with this program. If not, see . .\" .\" Commercial License Information: .\" .\" For a copy of the commercial license terms and conditions, .\" go to: (http://www.pbspro.com/UserArea/agreement.html) .\" or contact the Altair Legal Department. .\" .\" Altair’s dual-license business model allows companies, individuals, and .\" organizations to create proprietary derivative works of PBS Pro and .\" distribute them - whether embedded or bundled with other software - .\" under a commercial license agreement. .\" .\" Use of Altair’s trademarks, including but not limited to "PBS™", .\" "PBS Professional®", and "PBS Pro™" and Altair’s logos is subject to Altair's .\" trademark licensing policies. .\" .TH pbs_python 1B "23 October 2017" Local "PBS Professional" .SH NAME .B pbs_python \- Python interpreter for debugging a hook script from the command line .SH SYNOPSIS .B pbs_python --hook [-e ] [-i ] .RS 11 [-L ] [-l ] [-o ] .br [-r ] [-s ] [] .RE .B pbs_python .B pbs_python --version .SH DESCRIPTION The PBS Python interpreter, .B pbs_python, is a wrapper for Python. You can use the .B pbs_python wrapper that is shipped with PBS to debug hooks. Either: .RS 5 Use the .I --hook option to .B pbs_python to run .B pbs_python as a wrapper to Python, employing the .B pbs_python options. With the .I --hook option, you cannot use the standard Python options. The rest of this man page covers how to use .B pbs_python with the .I --hook option. Do not use the .I --hook option, so .B pbs_python runs the Python interpreter, with the standard Python options, and without access to the .B pbs_python options. .RE .B Debugging Hooks .br You can get each hook to write out debugging files, and then modify the files and use them as debugging input to .B pbs_python. Alternatively, you can write them yourself. Debugging files can contain information about the event, about the site, and about what the hook changed. You can use these as inputs to a hook when debugging. For a complete description of using .B pbs_python with debugging files, see "Debugging Hooks" in the PBS Professional Hooks Guide. .SH Options to pbs_python .IP "--hook" 6 This option is a switch. When you use this option, you can use the PBS Python module (via "import pbs"), and the other options described here are available. When you use this option, you cannot use the standard Python options. This option is useful for debugging. When you do not use this option, you cannot use the other options listed here, but you can use the standard Python options. .IP "-e " 6 Sets the mask that determines which event types are logged by .B pbs_python. To see only debug messages, set the value to 0xd80. To see all messages, set the value to 0xffff. .br The .B pbs_python interpreter uses the same set of mask values that are used for the .I $logevent entry in the .B pbs_mom configuration file. See the pbs_mom.8B man page. Available only when .I --hook option is used. .IP "-i " 6 Text file containing data to populate pbs.event() objects. Each line specifies an attribute value or a resource value. Syntax of each input line is one of the following: .RS 10 .= .br .[]= .RE .IP Where .RS 10 is a PBS object name which can refer to its sub-objects. Examples: "pbs.event()", "pbs.event().job", "pbs.event().vnode_list[""]". .RE .IP Example input file: .RS 10 .br pbs.event().hook_name=proto .br pbs.event().hook_type=site .br pbs.event().type=queuejob .br pbs.event().requestor=user1 .br pbs.event().requestor_host=host1 .br pbs.event().hook_alarm=40 .br pbs.event().job.id=72 .br pbs.event().job.Job_Name=job1 .br pbs.event().job.Resource_List[ncpus]=5 .br pbs.event().job.Resource_List[mem]=6mb .br pbs.event().vnode_list["host1"].resources_available["ncpus"] = 5 .br pbs.event().vnode_list["host1"].resources_available["mem"] = 300gb .RE .IP Available only when .I --hook option is used. .IP "-L " 6 Directory holding the log file where pbs.logmsg() and pbs.logjobmsg() write their output. Default is current working directory where .B pbs_python is executed. Available only when .I --hook option is used. .IP "-l " 6 Log file where pbs.logmsg() and pbs.logjobmsg() write their output. Default file name is current date in .I yyyymmdd format. Available only when .I --hook option is used. .IP "-o " 6 The hook execution record contains the changes made after executing the hook script, such as the attributes and resources set in any pbs.event() jobs and reservations, whether an action was accepted or rejected, and any pbs.reject() messages. .br Example hook execution record: .RS 10 .br pbs.event().job.Job_Name=job2 .br pbs.event().job.Resource_List[file]=60gb .br pbs.event().job.Resource_List[ncpus]=5 .br pbs.event().job.Resource_List[mem]=20gb .br pbs.event().job.Account_Name=account2 .br pbs.event().reject=True .br pbs.event().reject_msg=No way! .RE .IP Without this option, output goes to stdout. .IP Available only when .I --hook option is used. .IP "-r " 6 File/path name containing a resource definition specifying a custom resource whose Python type is .I pbs.resource. .br Format: .br .I type= [flag=] .br This file has the same format as the PBS_HOME/server_priv/resourcedef file. Available only when .I --hook option is used. .IP "-s " 6 The site data file can contain any relevant information about the server, queues, vnodes, and jobs at the server. This file can be written by a hook or by the administrator. .br When the hook writes it, this file contains the values that populate the server, queues, vnodes, reservations, and jobs, with all attributes and resources for which there are values. .br The site data file is named .I hook___.data. Available only when .I --hook option is used. .IP "--version" 6 The .B pbs_python command prints its version information and exits. This option can only be used alone. .SH ARGUMENTS .IP "" 6 The hook script to execute. We recommend importing the PBS Python module at the start of the script: .RS 9 import pbs .RE .IP If you do not specify .I Python script, you can perform interactive debugging. If you type the following: .RS 9 pbs_python --hook -i hook.input .RE .IP The interpreter displays a prompt: .RS 9 >> .RE .IP You can type your Python lines at the prompt: .RS 9 >>import pbs .br >> e=pbs.event().job .br >> print e.id .br .br ... .RE