Chronon Python API
Overview
Chronon Python API for materializing configs to be run by the Chronon Engine. Contains python helpers to help managed a repo of feature and join definitions to be executed by the chronon scala engine.
User API Overview
Sources
Most fields are self explanatory. Time columns are expected to be in milliseconds (unixtime).
# File <repo>/sources/sample_sources.py
from ai.chronon.query import (
Query,
select,
)
from ai.chronon.source import EventSource, EntitySource
# Sample query
Query(
selects=select(
user="user_id",
created_at="created_at",
),
wheres=["has_availability = 1"],
start_partition="2021-01-01", # Defines the beginning of time for computations related to the source.
setups=["...UDF..."],
time_column="ts",
end_partition=None,
mutation_time_column="mutation_timestamp",
reversal_column="CASE WHEN mutation_type IN ('DELETE', 'UPDATE_BEFORE') THEN true ELSE false END"
)
user_activity = EntitySource(
snapshot_table="db_exports.table",
mutation_table="mutations_namespace.table_mutations",
mutation_topic="mutationsKafkaTopic",
query=Query(...)
)
website__views = EventSource(
table="namespace.table",
topic="kafkaTopicForEvents",
)
Group By (Features)
Group Bys are aggregations over sources that define features. For example:
# File <repo>/group_bys/example_team/example_group_by.py
from ai.chronon.group_by import (
GroupBy,
Window,
TimeUnit,
Accuracy,
Operation,
Aggregations,
Aggregation,
DefaultAggregation,
)
from sources import sample_sources
sum_cols = [f"active_{x}_days" for x in [30, 90, 120]]
v0 = GroupBy(
sources=test_source.user_activity,
keys=["user"],
aggregations=Aggregations(
user_active_1_day=Aggregation(operation=Operation.LAST),
second_feature=Aggregation(
input_column="active_7_days",
operation=Operation.SUM,
windows=[
Window(n, TimeUnit.DAYS) for n in [3, 5, 9]
]
),
) + [
Aggregation(
input_column=col,
operation=Operation.SUM
) for col in sum_columns # Alternative syntax for defining aggregations.
] + [
Aggregation(
input_column="device",
operation=LAST_K(10)
)
],
dependencies=[
"db_exports.table/ds={{ ds }}" # If not defined will be derived from the Source info.
],
accuracy=Accuracy.SNAPSHOT, # This could be TEMPORAL for point in time correctness.
env={
"backfill": { # Execution environment variables for each of the modes for `run.py`
"EXECUTOR_MEMORY": "4G"
},
},
online=True, # True if this group by needs to be uploaded to a KV Store.
production=False # True if this group by is production level.
)
Join
A Join is a collection of feature values for the keys and (times if applicable) defined on the left (source). Example:
# File <repo>/joins/example_team/example_join.py
from ai.chronon.join import Join, JoinPart
from sources import sample_sources
from group_bys.example_team import example_group_by
v1 = Join(
left=sample_sources.website__views,
right_parts=[
JoinPart(group_by=example_group_by.v0),
],
online=True, # True if this join will be fetched in production.
production=False, # True if this join should not use non-production group bys.
env={"backfill": {"PARALLELISM": "10"}, "streaming": {"STREAMING_ENV_VAR": "VALUE"}},
)
Pre-commit Setup
- Install pre-commit and other dev libraries:
pip install -r requirements/dev.txt
- Run the following command under
api/pythonto install the git hook scripts:
pre-commit install
To support more pre-commit hooks, add them to the .pre-commit-config.yaml file.
Release files for awx-zipline-ai 0.5.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| awx_zipline_ai-0.5.4.tar.gz | 238.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| awx_zipline_ai-0.5.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 515.3 kB
Release files / awx_zipline_ai-0.5.4.tar.gz
| Download URL | awx_zipline_ai-0.5.4.tar.gz |
|---|---|
| Size | 238.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ba840cce4bba62076446a31b0681aeb0cd9faa32783182bf29a5bfa691f02bd2
|
|
BLAKE2b-256 checksum How to use checksums |
3ac224a61111dc9c39c35225617401b6c2ccf04b8841f1c689acbe149a88f9b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|
Release files / awx_zipline_ai-0.5.4-py3-none-any.whl
| Download URL | awx_zipline_ai-0.5.4-py3-none-any.whl |
|---|---|
| Size | 277.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c65d6c042558a733d316bc9a7f42dc34cc6dc3bbc2fbbb836b307b3366546aa9
|
|
BLAKE2b-256 checksum How to use checksums |
702a9edf5807592a60d450c4a54db72a7e419ca1d8cc4a8546c2485b888b11fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.13.5
|