Member since
12-12-2018
4
Posts
0
Kudos Received
0
Solutions
12-13-2018
10:46 AM
@Shu Thank you for your answer, my files are avro and not csv, and they are very large so conversion to another format will take a lot of time
... View more
12-13-2018
10:43 AM
@Geoffrey Shelton Okot thanks for your reply, my nifi version is 1.7.0
... View more
12-12-2018
07:20 PM
Hi, i have an avro file that i want to merge with a different avro file, the only difference between them is that one of the avro files have an additional column. the columns are nullables and their default is set to null for example, file1 schema: {
"name" : "col1",
"type" : ["null","string"],
"default":null
}
file2 schema: {
"name" : "col1",
"type" : ["null","string"],
"default":null
},{
"name" : "col2",
"type" : ["null","string"],
"default":null
} file1: col1
billy
chloe
ethan file2: col1 col2
jhon null
alex grey
chad null nifi is refusing to merge those files with the mergeContent and the mergeRecord processors. The first flowfile is being sent to relationship failure and second one to success. i want that after the merge the file will look like this: col1 col2
billy null
chloe null
ethan null
jhon null
alex grey
chad null
does anybody have an idea or a solution how to get nifi to merge those files? Thanks
... View more
Labels:
- Labels:
-
Apache NiFi