Skip to content

Commit

Permalink
[ZL] Add route for log-summary (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianfr authored Oct 2, 2023
1 parent 2aac7be commit 3e854df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/py/ai/chronon/repo/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
ONLINE_OFFLINE_WRITE_ARGS = OFFLINE_ARGS + ONLINE_ARGS
ONLINE_MODES = ['streaming', 'metadata-upload', 'fetch', 'local-streaming']
SPARK_MODES = ['backfill', 'upload', 'streaming', 'consistency-metrics-compute',
'compare', 'analyze', 'stats-summary',
'compare', 'analyze', 'stats-summary', 'log-summary',
'log-flattener', 'metadata-export', 'label-join']
MODES_USING_EMBEDDED = ['metadata-upload', 'fetch', 'local-streaming']

Expand All @@ -32,6 +32,7 @@
'backfill': OFFLINE_ARGS,
'upload': OFFLINE_ARGS,
'stats-summary': OFFLINE_ARGS,
'log-summary': OFFLINE_ARGS,
'analyze': OFFLINE_ARGS,
'streaming': ONLINE_WRITE_ARGS,
'metadata-upload': ONLINE_WRITE_ARGS,
Expand Down Expand Up @@ -62,6 +63,7 @@
'consistency-metrics-compute': 'consistency-metrics-compute',
'compare': 'compare-join-query',
'stats-summary': 'stats-summary',
'log-summary': 'log-summary',
'analyze': 'analyze',
'log-flattener': 'log-flattener',
'metadata-export': 'metadata-export',
Expand Down

0 comments on commit 3e854df

Please sign in to comment.