Kiba now defaults to "StreamingRunner" for processing jobs #83
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.
This PR ensures the
StreamingRunner
becomes the default for Kiba v3.0.0.This change is expected to be backward compatible, but the new runner is more powerful and will be the default in Kiba v3.0.0, so it's time to make it the default.
This will be reflected in the upcoming documentation rewrite (#77).
What is the
StreamingRunner
?Kiba v2.0.0 introduced a new "runner" (the code responsible for running the ETL jobs) named
StreamingRunner
.https://github.com/thbar/kiba/releases/tag/v2.0.0
This runner allows the creation of more powerful and more reusable ETL components.
Note on legacy
Runner
It's still possible to revert to the previous
Runner
using configuration like this:It is likely, though, that this legacy
Runner
will be removed in Kiba v4.