Member since
09-20-2018
17
Posts
0
Kudos Received
0
Solutions
10-18-2018
09:15 AM
Hello, How can I verify that the sftp file has finished copying? because listSFTP processor is listenning, but some files do not complete because they have many megabytes and the fetchsftp processor captures it before the transfer ends. Thanks
... View more
Labels:
- Labels:
-
Apache NiFi
10-16-2018
07:04 AM
@Shu The problem now is when i try use this processor, the fileflow incrase up to 10,000 fileflows but in the folder there is only 46 files, i don't know if it is a problem or no. How should I configure after the FetchHDFS processor? Thank you
... View more
10-15-2018
12:39 PM
I don't know how use this command in GetHDFSFileInfo processor and after the fetchHDFS processor. Sorry
... View more
10-15-2018
11:35 AM
I just want to create a groovy script that counts the fileflows and if there is less than 9 run a script shell. Thanks
... View more
10-15-2018
08:56 AM
Hello, i need use fetchHDF processor in the middle of the flow. I use first updateAttribute before fetchHDFS to create variable path and filename, but my problem is that i need to take all the files in a folder and i don't know how do it. updateattribute.jpg
... View more
Labels:
- Labels:
-
Apache NiFi
10-10-2018
01:04 PM
Hi, I need create groovy script to count th fileflows, this is my script: def trigger = session.get()
def flowFiles = session.get()
if(flowFiles.size() < 9) {
session.transfer(flowFiles,REL_SUCCESS)
}else {
session.transfer(flowFiles, REL_FAILURE) }
I want launch a script if de fileflow files are < 9. But the error is:
... View more
Labels:
- Labels:
-
Apache NiFi
10-02-2018
08:11 AM
@Shu I would need to look in an HDFS folder and check that before 10 a.m. there are 5 files, if there are not 5 files I should run PutSNS processor. If there are 0 files, How can I check that? because in this case no fileflow would be sent
Thanks!
... View more
10-01-2018
08:25 AM
Hello, I need create warnings and alerts. I will recive "a.txt" and "b.txt" files in a input folder, it's possible create a warning if the files are not received before 10 o'clock and create a alert if are not received before 12 o'clock? thanks!!
... View more
Labels:
- Labels:
-
Apache NiFi
09-28-2018
03:15 AM
Hello, I need link 3 column in all rows of the file, for example: column1;column2;column3;2018;09;27 column1_1;column2_1;column3_1;2018;09;27 column1_2;column2_2;column3_2;2018;09;27 the output file must contains only 4 columns: column1;column2;column3;20180927 column1_1;column2_1;column3_1;20180927 column1_2;column2_2;column3_2;20180927 The input file is .txt and the output file should be .txt Thaks!!
... View more
Labels:
- Labels:
-
Apache NiFi