Re: Implementing Gates with the Wait and Notify Processors

2019-04-23 Thread Jerry Vinokurov
Hi Shawn, I think it's a hard question to answer in the general sense. A lot depends on your specific implementation. What are you using to originate your flow? Is it a GenerateFlowFile processor, a List, or something else? There are a couple of different strategies that I've discovered for

Implementing Gates with the Wait and Notify Processors

2019-04-23 Thread Shawn Weeks
I'm working to implement a flow where for a given source of data I can only be processing one set at a time due to external dependencies. Each set needs to go through several different steps so this isn't just a matter of limiting concurrency for a single processor. I'm trying to implement this

RE: [EXT] Telnet login and data capture

2019-04-23 Thread Peter Wicks (pwicks)
You should look at the ExecuteStreamCommand processor. Write up a script that does what you want in Bash or Python, pass any variables you need either through command line arguments or STIDIN (the contents of the FlowFile is passed as STDIN, I’ve written up whole Python scripts using