-
Notifications
You must be signed in to change notification settings - Fork 31
runner: add data_url to route/pipeline and codegen #710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -1000,6 +1000,12 @@ components: | |||||||||||||||||||||||||||||||||
| description: URL for publishing events via Trickle protocol for pipeline | ||||||||||||||||||||||||||||||||||
| status and logs. | ||||||||||||||||||||||||||||||||||
| default: '' | ||||||||||||||||||||||||||||||||||
| data_url: | ||||||||||||||||||||||||||||||||||
| type: string | ||||||||||||||||||||||||||||||||||
| title: Data Url | ||||||||||||||||||||||||||||||||||
| description: URL for publishing data via Trickle protocol for pipeline status | ||||||||||||||||||||||||||||||||||
| and logs. | ||||||||||||||||||||||||||||||||||
|
Comment on lines
996
to
+1007
|
||||||||||||||||||||||||||||||||||
| description: URL for publishing events via Trickle protocol for pipeline | |
| status and logs. | |
| default: '' | |
| data_url: | |
| type: string | |
| title: Data Url | |
| description: URL for publishing data via Trickle protocol for pipeline status | |
| and logs. | |
| description: URL for publishing events, such as pipeline status updates and | |
| logs, via the Trickle protocol. | |
| default: '' | |
| data_url: | |
| type: string | |
| title: Data Url | |
| description: URL for publishing processed data or intermediate results via | |
| the Trickle protocol. |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -1158,6 +1158,12 @@ components: | |||||||||||||||||||||||||||||||||
| description: URL for publishing events via Trickle protocol for pipeline | ||||||||||||||||||||||||||||||||||
| status and logs. | ||||||||||||||||||||||||||||||||||
| default: '' | ||||||||||||||||||||||||||||||||||
| data_url: | ||||||||||||||||||||||||||||||||||
| type: string | ||||||||||||||||||||||||||||||||||
| title: Data Url | ||||||||||||||||||||||||||||||||||
| description: URL for publishing data via Trickle protocol for pipeline status | ||||||||||||||||||||||||||||||||||
| and logs. | ||||||||||||||||||||||||||||||||||
|
Comment on lines
1154
to
+1165
|
||||||||||||||||||||||||||||||||||
| description: URL for publishing events via Trickle protocol for pipeline | |
| status and logs. | |
| default: '' | |
| data_url: | |
| type: string | |
| title: Data Url | |
| description: URL for publishing data via Trickle protocol for pipeline status | |
| and logs. | |
| description: URL for publishing event-related information, such as pipeline | |
| status updates and logs, via the Trickle protocol. | |
| default: '' | |
| data_url: | |
| type: string | |
| title: Data Url | |
| description: URL for publishing data outputs generated by the pipeline, such as | |
| processed video frames or analysis results, via the Trickle protocol. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The description for
data_urlis identical toevents_urlexcept for the word 'data' vs 'events'. This doesn't clearly explain what distinguishes data_url from events_url or what type of data will be published through this URL.