Orchestra SDK for updating self-hosted Tasks.
Project description
Orchestra Python SDK
This is a lightweight SDK that allows Orchestra to interact with self-hosted applications (Tasks).
The basic premise is for your self-hosted Task to send back status updates and logs to Orchestra. This is done via HTTP requests. The Task must be started by Orchestra.
Installation
pip install orchestra-sdk
You initialise the package by creating an instance of the OrchestraSDK
class. It requires the API key that will connect with Orchestra - this can be found in your settings page. Orchestra will attempt to automatically set the other environment variables when the Task is triggered:
ORCHESTRA_WEBHOOK_URL
: The URL to send status updates toORCHESTRA_TASK_RUN_ID
: The UUID of the Task being executed
If these are not in your environment, you can set them manually after initialising the OrchestraSDK
class.
There are also optional configuration values:
send_logs
: send the contents of a log file to Orchestra associated with the task (default = False)log_file_path
: the path to the log file to send to Orchestra (default = "orchestra.log")
from orchestra_sdk.orchestra import OrchestraSDK
orchestra = OrchestraSDK(api_key="your_api_key")
# If not set in the environment:
orchestra.task_run_id = "your_task_run_id"
orchestra.webhook_url = "your_webhook_url"
Orchestra recommends retrieving the API key from some secret store that you have configured. If that is not possible, you can set the API key as an environment variable and read that value in your code.
If you are using the AWS Lambda Task type from Orchestra, you can use the following helper function to ensure the correct configuration has been applied:
from orchestra_sdk.orchestra import OrchestraSDK
orchestra = OrchestraSDK(api_key="your_api_key")
def handler(event, context):
orchestra.configure_aws_lambda_event(event)
# Your code here
Task decorator
The decorator will handle updating the Task in Orchestra automatically. It will send a RUNNING
status update when the function is called, and then send a SUCCEEDED
or FAILED
status update when the function finishes.
from orchestra_sdk.orchestra import OrchestraSDK
orchestra = OrchestraSDK(api_key="your_api_key")
@orchestra.run()
def my_function(arg1, arg2=1):
print("Running complex process")
- The decorator will firstly read and validate the environment variables
- It will send a
RUNNING
status update to Orchestra - Your function will then run
- If an exception is raised, the decorator will send a
FAILED
status update to Orchestra - If the function finishes without an error being raised, regardless of the return value, the decorator will send a
SUCCEEDED
status update to Orchestra - If
send_logs
is enabled, the contents of the logs will also be sent.
Updating Tasks manually
For additional control over when to update the status of the Task, or for sending messages to Orchestra, you can use the update_task
method of the OrchestraSDK
class.
from orchestra_sdk.enum import TaskRunStatus
from orchestra_sdk.orchestra import OrchestraSDK
orchestra = OrchestraSDK(api_key="your_api_key")
def my_function(arg1, arg2=1):
print("Start my complex process")
orchestra.update_task(status=TaskRunStatus.RUNNING, message="Starting process.")
print("Running complex process")
fn_result = complex_process()
if fn_result == 0:
orchestra.update_task(status=TaskRunStatus.SUCCEEDED)
else:
orchestra.update_task(status=TaskRunStatus.FAILED, message="Process failed")
- If the function fails or throws an exception, Orchestra might not register that the Task has failed, which could have downstream consequences on your pipeline. Consider wrapping your function in a try/except block and calling
update_task
withstatus=TaskRunStatus.FAILED
in the except block.
Sending logs
To send logs associated to the Task, enable the send_logs
flag when initialising the OrchestraSDK
class. The logs will be sent to Orchestra when the Task finishes and the decorator is being used.
An example logging configuration is shown below:
import logging
import sys
from orchestra_sdk.orchestra import OrchestraSDK
orchestra = OrchestraSDK(
api_key="your_api_key",
send_logs=True,
log_file="a.log"
)
def test_function():
# Setup logging configuration
logger = logging.getLogger()
logger.setLevel(logging.INFO)
# File handler
file_handler = logging.FileHandler(orchestra.log_file)
file_handler.setLevel(logging.INFO)
file_formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
file_handler.setFormatter(file_formatter)
# Console handler
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setLevel(logging.INFO)
console_formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
console_handler.setFormatter(console_formatter)
# Adding handlers to the logger
logger.addHandler(file_handler)
logger.addHandler(console_handler)
logger.info("Hello, World!")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file orchestra_sdk-0.0.22.tar.gz
.
File metadata
- Download URL: orchestra_sdk-0.0.22.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99f6a5bbed5c6f51d0e5625bb634457e64baca8a5408a1ec80b6aca632e91b7d |
|
MD5 | 4ace709944d1b44810e13916ae632cce |
|
BLAKE2b-256 | 0c64900ceb172ef6464cf49717b9c44978e30e32dfba3f872af2a19fd6431578 |
File details
Details for the file orchestra_sdk-0.0.22-py3-none-any.whl
.
File metadata
- Download URL: orchestra_sdk-0.0.22-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3f704725b53edcaaf3783ff088c53caa6a542983b5724e1eb9e105ef07674f2 |
|
MD5 | 2e5d7a2ce201143096cc4a7eb8e308c3 |
|
BLAKE2b-256 | df56930c231d1617ce6f25d45cff788f41da5ca5503c17ae6ca239e2ec1b5652 |