Member since
07-19-2016
3
Posts
0
Kudos Received
0
Solutions
02-17-2017
04:31 PM
1 Kudo
@john doe use STORED AS ORC instead of RCFILE also, use CTAS to create a table from one table first, then do on the second table INSERT INTO TABLE tablename1 [PARTITION (partcol1=val1, partcol2=val2 ...)] (z,y) select_statement1 FROM from_statement; see if that improves performance, I know it's 2 steps but interesting use case.
... View more
08-08-2016
07:32 PM
1 Kudo
Hi @john doe I recently ran PutKafka and GetKafka in NiFi (connecting to a local VM). I found that adding the FQDN and ip to /etc/hosts made this work for me. For example if the FQDN is host1.local and IP is 192.168.4.162 then adding 192.168.4.162 host1.local to /etc/hosts Made this work.
... View more