James,
Using ${filename} and -si together seems wrong to me. What happens when you try
that on the command line?
Steve Hindmarch
From: James McMahon <[email protected]>
Sent: 28 September 2022 13:49
To: [email protected]; Hindmarch,SJ,Stephen,VIR R <[email protected]>
Subject: Re: Can ExecuteStreamCommand do this?
Thank you Steve. I 've employed a ListFile/FetchFile to load the 7z files into
the flow . When I have my ESC configured like this following, I get my unpacked
files results to the #{unpacked.destination} directory on disk:
Command Arguments x;${filename};-spf;-o#{unpacked.destination};-aou
Command Path /bin/7a
Ignore STDIN true
Working Directory #{unpacked.destination}
Argument Delimiter ;
Output Destination Attribute No value set
I get twelve files in my output destination folder.
When I try this one, get an error and no output:
Command Arguments x;${filename};-si;-so;-spf;-aou
Command Path /bin/7a
Ignore STDIN false
Working Directory #{unpacked.destination}
Argument Delimiter ;
Output Destination Attribute No value set
This yields this error...
Executable command /bin/7za ended in an error: ERROR: Can not open the file as
archive
E_NOTIMPL
...and it yields only one flowfile result in Output Stream, and that is a brief
text/plain report of the results of the 7za extraction like this:
This indicates it did indeed find my 7z file and it did indeed identify the 12
files in it, yet still I get no output to my outgoing flow path:
Extracting archive: /parent/subparent/testArchive.7z
- -
Path = /parentdir/subdir/testArchive.7z
Type = 7z
Physical Size = 7204
Headers Size = 298
Method = LZMA2:96k
Solid = +
Blocks = 1
Everything is Ok
Folders: 1
Files: 12
Size: 90238
Compressed: 7204
${filename} in both cases is a fully qualified name to the file, like this:
/dir/subdir/myTestFile.7z.
I can't seem to get the ESC output stream to be the extracted files. Anything
jump out at you?
On Wed, Sep 28, 2022 at 8:06 AM
stephen.hindmarch.bt.com<https://eur02.safelinks.protection.outlook.com/?url=http%3A%2F%2Fstephen.hindmarch.bt.com%2F&data=05%7C01%7Cstephen.hindmarch%40bt.com%7Cb578e804aef542c3732508daa14fd410%7Ca7f356889c004d5eba4129f146377ab0%7C0%7C0%7C637999661477657443%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=D3U0MTcLXRfuCppiT%2BqGNK7Xnbt77wXgPgzsPQVeYZc%3D&reserved=0>
via users <[email protected]<mailto:[email protected]>> wrote:
Hi James,
I am not in a position to test this right now, but you have to think of the
flowfile content as STDIN and STDOUT. So with 7zip you need to use the "-si"
and "-so" flags to ensure there are no files involved. Then if you can load the
content of a file into a flowfile, eg with GetFile, then you should be able to
unpack it with ExecuteStreamCommand. Set "Ignore STDIN" = "false".
I have written up my own use case on github. This involves having a Redis
script as the input, and results of the script as the output.
my-nifi-cluster/experiment-redis_direct.md at main * hindmasj/my-nifi-cluster *
GitHub<https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fhindmasj%2Fmy-nifi-cluster%2Fblob%2Fmain%2Fdocs%2Fexperiment-redis_direct.md&data=05%7C01%7Cstephen.hindmarch%40bt.com%7Cb578e804aef542c3732508daa14fd410%7Ca7f356889c004d5eba4129f146377ab0%7C0%7C0%7C637999661477657443%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=dT4JGSIjKJTiD%2BWIYfPnkQyJSzt%2FgMzreRD8thdFdVE%3D&reserved=0>
The first part of the post shows how to do it with the input commands on the
command line, so a bit like you running "7za ${filename} -so". The second part
has the script inside the flowfile and is treated as STDIN, a bit like you
doing "unzip -si -so".
See if that helps. Fundamentally, if you do "7za -si -so < myfile.7z" on the
command line and see the output on the console, ExecuteStreamCommand will
behave the same.
Steve Hindmarch
From: James McMahon <[email protected]<mailto:[email protected]>>
Sent: 28 September 2022 12:02
To: [email protected]<mailto:[email protected]>
Subject: Can ExecuteStreamCommand do this?
I continue to struggle with ExecuteStreamCommand, and am hoping one of you from
our user community can help me with the following:
1. Can ExecuteStreamCommand be used as I am trying to use it?
2. Can you direct me to an example where ExecuteStreamCommand is configured to
do something similar to my use case?
My use case:
The incoming flowfiles in my flow path are 7z zips. Based on what I've
researched so far, NiFi's native processors don't handle unpacking of 7z files.
I want to read the 7z files as STDIN to ExecuteStreamCommand.
I'd like the processor to call out to a 7za app, which will unpack the 7z.
One incoming flowfile will yield multiple output files. Let's say twelve in
this case.
My goal is to output those twelve as new flowfiles out of ExecuteStreamCommand,
to its output stream path.
I can't yet get this to work. Best I've been able to do is configure
ExecuteStreamCommand to unpack ${filename} to a temporary output directory on
disk. Then I have another path in my flow polling that directory every few
minutes looking for new data. Am hoping to eliminate that intermediate
write/read to/from disk by keeping this all within the flow and JVM memory.
Thanks very much in advance for any assistance.