We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A withErrorHandler method on RequestResponseIO accepts ErrorHandler.BadRecordErrorHandler and returns a PTransform<PCollection<RequestT>, PCollection<ResponseT>>.
PTransform<PCollection<RequestT>, PCollection<ResponseT>>
The value of this new method is to enable chaining of API response PCollections to improve ease of use. For example,
try (BadRecordErrorHandler<T> errorHandler = pipeline.registerBadRecordErrorHandler(SomeDLQ.write())) { PCollection<ResponseT> results = records.apply(RequestResponseIO.of(...).withErrorHandler(errorHandler)); }
Priority: 2 (default / most normal work should be filed as P2)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What needs to happen?
A withErrorHandler method on RequestResponseIO accepts ErrorHandler.BadRecordErrorHandler and returns a
PTransform<PCollection<RequestT>, PCollection<ResponseT>>
.The value of this new method is to enable chaining of API response PCollections to improve ease of use. For example,
Issue Priority
Priority: 2 (default / most normal work should be filed as P2)
The text was updated successfully, but these errors were encountered: