Revise Beam programming guide for new DoFn#36
Closed
kennknowles wants to merge 2 commits intoapache:asf-sitefrom
kennknowles:new-DoFn
Closed
Revise Beam programming guide for new DoFn#36kennknowles wants to merge 2 commits intoapache:asf-sitefrom kennknowles:new-DoFn
kennknowles wants to merge 2 commits intoapache:asf-sitefrom
kennknowles:new-DoFn
Conversation
Member
Author
|
Actual changes are in the first commit, rebuild in the second. |
| ``` | ||
|
|
||
| Inside your `DoFn` subclass, you'll need to override the method `processElement`, where you provide the actual processing logic. You don't need to manually extract the elements from the input collection; the Beam SDKs handle that for you. Your override of `processElement` should accept an object of type `ProcessContext`. The `ProcessContext` object gives you access to an input element and a method for emitting an output element: | ||
| Inside your `DoFn` subclass, you'll write a method annotated with `@ProcessElement` where you provide the actual processing logic. You don't need to manually extract the elements from the input collection; the Beam SDKs handle that for you. Your `@ProcessElement` method should accept an object of type `ProcessContext`. The `ProcessContext` object gives you access to an input element and a method for emitting an output element: |
Member
There was a problem hiding this comment.
I'm not sure what Devin's plans were for making this language-independent. If this is general prose, we should avoid java-specific implementation details. But that's probably a topic for another day ;-)
Member
|
LGTM. Will merge. |
robertwb
pushed a commit
to robertwb/incubator-beam
that referenced
this pull request
Jun 5, 2018
melap
pushed a commit
to apache/beam
that referenced
this pull request
Jun 20, 2018
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
R: @francesperry