Python SDK for the Predixus Orca product
Project description
🐳 Orca Python SDK
The Orca Python SDK enables developers to define and register Python-based algorithms into the Orca framework.
Orca exists to make it seamless to build scalable, production-grade ML or analytics pipelines on timeseries data.
🚀 Getting Started
Before using this SDK, you should install the Orca CLI and start Orca Core.
- Install the Orca CLI Ensure that Docker is installed on your system.
Linux / macOS
curl -fsSL https://raw.githubusercontent.com/orc-analytics/orca/main/install-cli.sh | bash
Windows
Use WSL (Windows Subsystem for Linux) and run the above command inside your WSL shell.
Once installed, follow the instructions in the Orca documentation to start the Orca Core service.
- Start the Orca Server
orca start
- Print out the server details
orca status
- Install the Orca sdk into your python project:
pip install orca-python
- Start building out your algorithms
Write a file defining your algorithms and what windows trigger them:
# main.py
from orca_python import Processor
proc = Processor("ml")
@proc.algorithm("MyAlgo", "1.0.0", "MyWindow", "1.0.0")
def my_algorithm() -> dict:
return {"result": 42}
if __name__ == "__main__":
proc.Register()
proc.Start()
Then run your python file to register it with orca-core:
ORCA_CORE=grpc://localhost:32770 PROCESSOR_ADDRESS=172.18.0.1:8080 python main.py
Replace the contents of ORCA_CORE and PROCESSOR_ADDRESS with the output of orca status.
- Emit a window to orcacore
Check out more examples here.
- Sync local registry of algorithms to Orca Core
When building algorithms that depend on the result of algorithms in other proccessors it's neccessary to reference these algorithms as python objects in the depends_on argument of the algorithm decorator function.
To do this, sync your python project with Orca Core:
orca sync
Run this command at the root level of your python project. This will generate a .orca folder that contains type stubs for the algorithms stored in other processors.
Then, configure the settings of your language server and/or linter to include these type stubs. E.g. for pyright, you would include these settings in your pyrightconfig.json file at the root of your python project:
{
"stubPath": ".orca",
}
Now, when importing modules from orca_python.registry.algorithms you will see algorithms configured by remote processors.
For example:
from orca_python.registry.algorithms import <my_remote_algorithm>
This stubbed algorithm can be used as an algorithm in the depends_on argument of the algorithm decorator function.
from orca_python import Processor
from orca_python.registry.window_types import every_30_seconds
from orca_python.registry.algorithms import my_remote_algorithm
proc = Processor("ml")
@proc.algorithm(
"MyAlgo",
"1.0.0",
every_30_seconds,
depends_on=[my_remote_algorithm]
)
def my_algorithm(params: ExecutionParams) -> StructResult:
...
Configuration
Some configuration is required to register a process then start accepting processing requests. If using the internal orca stack for development (via orca start), then simply initialise the repository with an orca.json file:
orca init
You can additionally provide these environment variables to override, or set, certain configurations:
ORCA_CORE- the address to reach the Orca-core servicePROCESSOR_ADDRESS- the address needed by Orca-core to reach the processor, of format<address>:<port>PROCESSOR_EXTERNAL_PORT- an optional alternative port that should be used by Orca-core to contact the processor. Useful in scenarios like deploying the processor behind a managed service.ENV- when set toproductionthe processor will serve using TLS
🧱 Key Concepts
Checkout the Orca docs for info on how Orca works.
👥 Community
GitHub Issues: https://github.com/orc-analytics/orca-python/issues
Discussions: Coming soon!
📄 License
This SDK is part of the Orca ecosystem, but licensed under the MIT License.
See the full license terms (here)[./LICENSE].
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file orca_python-0.13.0.tar.gz.
File metadata
- Download URL: orca_python-0.13.0.tar.gz
- Upload date:
- Size: 41.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d62588f969de19903a38bed1ea0c4400b3cefb71666646973ac32b085199e9b2
|
|
| MD5 |
0fb9f3a72a01fdc0ed4ef4df84476466
|
|
| BLAKE2b-256 |
0e0d05c1c1069ed90ee3e932b022a1811b346a0ff7d9da830c87a73367418409
|
File details
Details for the file orca_python-0.13.0-py3-none-any.whl.
File metadata
- Download URL: orca_python-0.13.0-py3-none-any.whl
- Upload date:
- Size: 42.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.1 CPython/3.13.11 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d0e8147165ebc54989e07c532c70b1e5d5d3ab638028f4147f139cd2989d1ef
|
|
| MD5 |
1a03911ea0d72ea64000b861a6d66545
|
|
| BLAKE2b-256 |
9953654651bb718bf5f1fb3b498bd4dc89a80a77d97021b10c10f9252ed8773c
|