Re: Flow file from a (long) string

2016-10-18 Thread Joe Percivall
Hello AP, The way this is generally done is a GenerateFlowFile processor -> ReplaceText. For ReplaceText, you will use the "Replace Strategy" of "Always Replace" and an "Evaluation Mode" of "Entire Text". This will set the content of the FlowFile to whatever you have in the "Replacement Value"

Re: Flow file from a (long) string

2016-10-18 Thread Matt Burgess
Alessio, The ReplaceText processor [1] will allow you to set the content of a flow file to a string of your choosing. You can use GenerateFlowFile [2] with a size of 0B and type Text, to get a flow file routed to ReplaceText, which then sets the content. This is a common pattern seen in some of th

Flow file from a (long) string

2016-10-18 Thread Alessio Palma
Hello, is there a processor which allows to build a flowfile from a string? Basically I have some huge queries and want to add them into the workflow without load them from file or database. AP