-
Notifications
You must be signed in to change notification settings - Fork 183
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
[FLINK-16557][docs] Document YAML-ized Kafka egresses / ingresses in … #63
Conversation
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.
Looks good, thanks a lot for writing this up @sjwiesman.
Only found minor problems with indentation and typos, I'll address those when merging!
ingresses: | ||
- ingress: |
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.
Indentation seems a bit off here:
ingresses: | |
- ingress: | |
ingresses: | |
- ingress: |
egresses: | ||
- egress: |
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.
Same here: indentation
topics: | ||
- topic: messages-1 |
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.
Indentation:
topics: | |
- topic: messages-1 | |
topics: | |
- topic: messages-1 |
|
||
.. code-block:: none | ||
|
||
KafkaEgressBuilder#withNoProducerSemantics(); |
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.
This should be KafkaEgressBuilder#withAtLeastOnceSemantics
.. code-block:: yaml | ||
|
||
deliverySemantic: | ||
type: none |
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.
Should be type: at-least-once
|
||
The Kafka egress needs to know how to turn Java objects into binary data. | ||
When using the Java pi, the Kafka egress needs to know how to turn Java objects into binary data. |
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.
When using the Java pi, the Kafka egress needs to know how to turn Java objects into binary data. | |
When using the Java api, the Kafka egress needs to know how to turn Java objects into binary data. |
…Stateful Functions documentation