Member since
05-24-2016
45
Posts
4
Kudos Received
0
Solutions
10-25-2017
01:54 PM
@Thierry Vernhet If you have more than 10 GB, I'd recommend use distcp instead of using Copy OR Move.
... View more
10-23-2017
11:35 AM
1 Kudo
Thanks a lot Pavan., I've just modified ... $5 == "0" ... by ... $5 != "0" ... because I don't want to move files with "0"size.
for f in $(hdfs dfs -ls /tmp/files | awk '$1 !~ /^d/ && $5 != "0" { print $8 }');do hdfs dfs -mv "$f"/tmp/files/exclude-files;done
... View more
12-18-2017
02:00 PM
Thank You Matt, I too was facing similar issue and your suggestion worked.
... View more
05-23-2017
06:23 AM
@Wynner Hi, Memory settings already to 8Go for both. This morning I tried to set Number min and max of Entries and it works !!! Thanks for your help Wynner. Regards Parameters set (so the merge create about 1000 files) Minimum Number of Entries
1
Maximum Number of Entries
2500
Minimum Group Size
0 B
Maximum Group Size
No value set
Max Bin Age
5 min
Maximum number of Bins
100
Delimiter Strategy
Text
... View more
06-23-2016
09:24 AM
Hi @Pierre Villard Thanks for your answer.
... View more
06-16-2016
09:52 AM
1 Kudo
Hi @Thierry Vernhet, I am not familiar with WMI events, but there are the following JIRAs: https://issues.apache.org/jira/browse/NIFI-1976 (work in progress, PR available) https://issues.apache.org/jira/browse/NIFI-1975 (will be available in NiFi 1.0.0) Does it answer your need?
... View more
06-06-2016
01:20 PM
I'm using the same as you: Beginning of file. I think the version should not matter on this processor: it didn't change since 5 months. However if you are able to try with the PR mentioned above, it may be worth it.
... View more
10-26-2016
02:10 PM
Hi @Pierre Villard My input is as shown below
i, John, $100 ii, Kevin, $150 iii, Steve, $200 I used ExtractText processor with Enable Multiline Mode=true, Enable DOTALL Mode=true and new property line=(.*). After execution I see below in provenance event in attributes tab
line i, John, $100 ii, Kevin, $150 iii, Steve, $200 line.0 i, John, $100 ii, Kevin, $150 iii, Steve, $200 line.1 i, John, $100 ii, Kevin, $150 iii, Steve, $200 Expected output
line i, John, $100 line.0 ii, Kevin, $150 line.1 iii, Steve, $200 Please suggest.
... View more
05-26-2016
02:34 PM
Wonderful Now it's ok Simon
... View more