Re: Running processors simulaneously

2017-05-17 Thread Vdsa
I have implemented solution of creation flow files and working perfectly only problem I am facing is flow files are transferred after completion of processor or on commit of session. Is there any way i send flow files as it is generated to the next processor if i commit session after a flowfile.Tra

Re: Running processors simulaneously

2017-05-09 Thread Vdsa
Thanks matt for the reply, this solution seems interesting, right now only files are generated on disk, is it possible to generate flow file for each file? if yes how can i achieve that. Thanks in advance. -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Ru

Running processors simulaneously

2017-05-09 Thread Vdsa
I have a custom processor which generates some files, listFile takes those files and moves those files to HDFS, when I run a processor group it starts executing all the processors and as list file is independent of any input it starts fetching file and it does not get that. Thus i get error that fi

Re: How to pass custom attribute to a ListFile and putHDFS

2017-04-26 Thread Vdsa
Thanks a lot for the detailed explanation, I agree with all your points. Just wanted to know how to define custom attributes. Thanks in advance. -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/How-to-pass-custom-attribute-to-a-ListFile-and-putHDFS-tp15558

How to pass custom attribute to a ListFile and putHDFS

2017-04-25 Thread Vdsa
I have a custom processor which sets a source and destination directories. I need to pass these attributes as a directory to ListFile and PutHDFS. I have added attribute in session like flowFile = session.putAttribute(flowFile, "source dir", source); and I am trying to access it using expressio

Installing Nifi server

2017-04-06 Thread Vdsa
I need to install only NIFi server, I do not require nifi UI. I will be handling nifi server with rest API. Is it possible to install only NIFI server without UI? -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/Installing-Nifi-server-tp15398.html Sent from

Accessing nifi processgroup simutaneoulsy by multiple users

2017-04-05 Thread Vdsa
I wanted to know if a process group is running and another user want access and execute same process group, will nifi allow him? or what is the process of parallel execution of a process group for two users? Can we stop a running process group after execution is finished ( how to figure out that ex