Batch deployment input details for Python scripts
Follow these rules when specifying input details for batch deployments of Python scripts.
Data type summary table:
| Data | Description |
|---|---|
| Type | data references |
| File formats | any |
Data Sources
Input/output data references:
- Local/managed assets from the space
- Connected (remote) assets: Cloud Object Storage and Storage Volumes
Notes:
- For connections of type Cloud Object Storage or Cloud Object Storage(infrastructure), you must configure Access key and Secret key, also known as HMAC credentials.
If you are specifying input/output data references programmatically:
- Data source reference
typedepends on the asset type. Refer to the Data source reference types section in Adding data assets to a deployment space. - You can specify environment variables required for executing the Python Script as
'key': 'value'pairs inscoring.environment_variables. Thekeymust be the name of an environment variable and thevaluemust be the corresponding value of the environment variable. - The deployment job's payload will be saved as a JSON file in the deployment container where the Python script will be executed. The Python script can access the full path filename of the JSON file using the
JOBS_PAYLOAD_FILEenvironment variable. - If input data is referenced as a local or managed data asset, deployment service will download the input data and place it in the deployment container where the Python script will be executed. You can access the location (path) of the downloaded
input data through the
BATCH_INPUT_DIRenvironment variable. - For input data references (data asset or connection asset), downloading of the data must be handled by the Python script. If a connected data asset or a connection asset is present in the deployment jobs payload, you can access it using the
JOBS_PAYLOAD_FILEenvironment variable which contains the full path to deployment job's payload saved as a JSON file. - If output data must be persisted as a local or managed data asset in a space, you can specify the name of the asset to be created in
scoring.output_data_reference.location.name. As part of Python script, output data can be placed in the path specified by theBATCH_OUTPUT_DIRenvironment variable. Deployment service will compress the data to ZIP format and upload it in the location specified inBATCH_OUTPUT_DIR. - If output data must be saved in a remote data store, you must specify the reference of the output data reference (for example, a data asset or a connected data asset) in
output_data_reference.location.href. The Python script must take care of uploading the output data to the remote data source. If a connected data asset or a connection asset reference is present in the deployment jobs payload, you can access it using theJOBS_PAYLOAD_FILEenvironment variable, which contains the full path to deployment job's payload saved as a JSON file. - If the Python script does not require any input or output data references to be specified in the deployment job payload, then do not provide the
scoring.input_data_referencesandscoring.output_data_referencesobjects in the payload. - Deploying a script to run on a Hadoop environment is currently not supported.
Parent topic: Batch deployment input details by framework