Batch APIs run distributed and fault-tolerant batch processing jobs on-demand. They can be used for batch inference or data processing workloads. It can also be used for running ML models using a variety of frameworks such as: PyTorch, ONNX, scikit-learn, XGBoost, TensorFlow (if not using SavedModels), etc.
If you plan on deploying models with TensorFlow in SavedModel format and run inferences in batches, you can also use the TensorFlow Handler that was specifically built for this purpose.
Project files
Cortex makes all files in the project directory (i.e. the directory which contains cortex.yaml) available for use in your Handler class implementation. Python bytecode files (*.pyc, *.pyo, *.pyd), files or folders that start with ., and the api configuration file (e.g. cortex.yaml) are excluded.
The following files can also be added at the root of the project's directory:
.cortexignore file, which follows the same syntax and behavior as a .gitignore file.
.env file, which exports environment variables that can be used in the handler class. Each line of this file must follow the VARIABLE=value format.
# initialization code and variables can be declared here in global scopeclassHandler:def__init__(self,config,job_spec):"""(Required) Called once during each worker initialization. Performs setup such as downloading/initializing the model or downloading a vocabulary. Args: config (required): Dictionary passed from API configuration (if specified) merged with configuration passed in with Job Submission API. If there are conflicting keys, values in configuration specified in Job submission takes precedence. job_spec (optional): Dictionary containing the following fields: "job_id": A unique ID for this job "api_name": The name of this batch API "config": The config that was provided in the job submission "workers": The number of workers for this job "total_batch_count": The total number of batches in this job "start_time": The time that this job started """passdefhandle_batch(self,payload,batch_id):"""(Required) Called once per batch. Preprocesses the batch payload (if necessary), runs inference, postprocesses the inference output (if necessary), and writes the results to storage (i.e. S3 or a database, if desired). Args: payload (required): a batch (i.e. a list of one or more samples). batch_id (optional): uuid assigned to this batch. Returns: Nothing """passdefon_job_complete(self):"""(Optional) Called once after all batches in the job have been processed. Performs post job completion tasks such as aggregating results, executing web hooks, or triggering other jobs. """pass
Structured logging
You can use Cortex's logger in your handler implemention to log in JSON. This will enrich your logs with Cortex's metadata, and you can add custom metadata to the logs by adding key value pairs to the extra key when using the logger. For example:
To avoid overriding essential Cortex metadata, please refrain from specifying the following extra keys: asctime, levelname, message, labels, and process. Log lines greater than 5 MB in size will be ignored.
Cortex Python client
A default Cortex Python client environment has been configured for your API. This can be used for deploying/deleting/updating or submitting jobs to your running cluster based on the execution flow of your batch handler. For example:
import cortexclassHandler:defon_job_complete(self): ...# get client pointing to the default environment client = cortex.client()# deploy API in the existing cluster using the artifacts in the previous step client.create_api(...)