Created 06-21-2017 06:51 PM
Hi All,
I'm trying to unpack/de-merge merged text files that were merged earlier using the "Binary Concatenation" format; in the UnpackContent processor's "Packaging Format" property, there is no "Binary Concatenation" format available; by the way we're on NiFi 1.0.1;
Is there a workaround ?
Thanks.
Created 06-21-2017 08:48 PM
Since binary concatenation is just writing chucks of raw bytes one after another, there is no real format that can be understood to undo it. There would be no way for another processor to read those bytes and know where it was merged together.
If you use a demarcator when merging, then you can use that to unmerge by using SplitContent or SplitText.
Created 06-21-2017 08:48 PM
Since binary concatenation is just writing chucks of raw bytes one after another, there is no real format that can be understood to undo it. There would be no way for another processor to read those bytes and know where it was merged together.
If you use a demarcator when merging, then you can use that to unmerge by using SplitContent or SplitText.
Created 06-22-2017 04:20 PM
@Bryan Bende thank you, I'm trying with SplitContent, initial results are encouraging.