Overview
- listen_addr: The interface on which the servers listens on. Typically you would want to listen on all interfaces. Default:
0.0.0.0:8900
. - state_store_path: Path where the state store is stored. This is where the state of the graph is stored. This is needed for resuming the graph from where it left off in case of a failure. Default:
indexify_storage
. - blob_storage: Configuration for storing blobs. Blobs are raw bytes of data that are stored in the system. This is used for storing intermediate data between functions.
Blob Storage Configuration
Blob storage is used to store the output of functions. We support two forms of blob storage at the moment - Disk and S3 Storage.Disk
S3 Storage
For S3 Storage, you’ll need to also ensure you have the two following environment variables configured. Once you’ve configured these environment variables, our S3 integration will take care of the restAWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
AWS_REGION
Executor health checks
You can fetch the current Executor health status by issuing an HTTP GET request to its monitoring endpoint, e.g.:--monitoring-server-host
and --monitoring-server-port
.