-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Adds proto fields for overwriting fetch/write state functionality #36708
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
Changes from 1 commit
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 |
|---|---|---|
|
|
@@ -415,6 +415,15 @@ message ProcessBundleRequest { | |
| // beam:protocol:control_request_elements_embedding:v1 capability. See more | ||
| // at https://s.apache.org/beam-fn-api-control-data-embedding. | ||
| Elements elements = 3; | ||
|
|
||
| // indicates that the runner has no start for the keys in this bundle | ||
| // so SDk can safely begin stateful processing with a locally-generated | ||
| // initial empty state | ||
| bool has_no_keyed_state = 4; | ||
|
||
|
|
||
| // indicates that the runner will never process another bundle for the keys | ||
| // in this bundle so state need not be included in the bundle commit. | ||
| bool only_bundle_for_keys = 5; | ||
| } | ||
|
|
||
| message ProcessBundleResponse { | ||
|
|
||
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.
typo:
s/start/state/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.
Oops, thank you! Fixed!