NIFI-7142: Automatically handle schema drift in the PutKudu processor#4053
Closed
granthenke wants to merge 1 commit intoapache:masterfrom
Closed
NIFI-7142: Automatically handle schema drift in the PutKudu processor#4053granthenke wants to merge 1 commit intoapache:masterfrom
granthenke wants to merge 1 commit intoapache:masterfrom
Conversation
pvillard31
requested changes
Feb 13, 2020
...-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
Show resolved
Hide resolved
...-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
Outdated
Show resolved
Hide resolved
pvillard31
reviewed
Feb 14, 2020
...-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
Show resolved
Hide resolved
pvillard31
reviewed
Feb 14, 2020
...udu-bundle/nifi-kudu-processors/src/test/java/org/apache/nifi/processors/kudu/ITPutKudu.java
Outdated
Show resolved
Hide resolved
ee1d03d to
1e508bd
Compare
pvillard31
reviewed
Feb 15, 2020
...-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
Outdated
Show resolved
Hide resolved
...-kudu-bundle/nifi-kudu-processors/src/main/java/org/apache/nifi/processors/kudu/PutKudu.java
Outdated
Show resolved
Hide resolved
Adds a boolean property to the PutKudu processor to optionally enable automatic schema drift handling. If set to true, when fields with names that are not in the target Kudu table are encountered, the Kudu table will be altered to include new columns for those fields.
Member
Author
|
I rebased onto the latest master changes. |
pvillard31
approved these changes
Feb 18, 2020
Contributor
|
Merged to master, thanks @granthenke |
asfgit
pushed a commit
that referenced
this pull request
Feb 21, 2020
Adds a boolean property to the PutKudu processor to optionally enable automatic schema drift handling. If set to true, when fields with names that are not in the target Kudu table are encountered, the Kudu table will be altered to include new columns for those fields. Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #4053.
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.
Adds a boolean property to the PutKudu processor to optionally
enable automatic schema drift handling.
If set to true, when fields with names that are not in the target
Kudu table are encountered, the Kudu table will be altered to
include new columns for those fields.