Member since
05-30-2018
1322
Posts
715
Kudos Received
148
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 4045 | 08-20-2018 08:26 PM | |
| 1943 | 08-15-2018 01:59 PM | |
| 2372 | 08-13-2018 02:20 PM | |
| 4104 | 07-23-2018 04:37 PM | |
| 5010 | 07-19-2018 12:52 PM |
07-19-2016
02:38 AM
@Roberto Sancho I am reading the documentation on host clean here. nothing on reversing this action....
... View more
07-19-2016
02:26 AM
@Ash Pad I personally like @Ted Yu answer. Until that is release I don't recommend storing these files on hbase. Instead a common practice to have the file save on HDFS and have the "pointer" stored in hbase.
... View more
07-19-2016
02:23 AM
@Michael Sobelman That DNS is not detectable by the node you are trying to access from. You can be fancy on aws and configure through routing tables by setting up a proper vpn between the EMR and NiFi nodes. Another option I used is route53 which will give you DNS publicly available. Lastly you can put a ELB infront of your EMR HBase master node. You may have to script it up (via boot scripts) to configure your ELB to point to new internal IP.
... View more
07-18-2016
04:05 PM
@Laurent Edel thanks. I thought so but needed another to confirm.
... View more
07-15-2016
09:14 PM
@Samie WALA I have not seen this before. I need to do a quick dive into the code. until then @Artem Ervits have you seen this?
... View more
07-15-2016
09:04 PM
@Randy Gelhausen that is is awesome feedback. thanks for the insights. I more then likely would use the api for most use cases. for this specific use case a jdbc connector is required.
... View more
07-15-2016
07:14 PM
@Samie WALA can you post what the ambari log is spitting out when you try to restart service?
... View more
07-15-2016
05:36 PM
@slachterman and @Randy Gelhausen thanks for the answers. helpful
... View more
07-15-2016
05:33 PM
I need to know when oozie fails over to HA instance how does that impact current running jobs?
... View more
Labels:
- Labels:
-
Apache Oozie
07-14-2016
04:03 PM
1 Kudo
I use this blog often when I forget the data movement between map-->reduce
The map outputs are copied to the reduce task JVM’s memory if they are small enough (the buffer’s size is controlled by mapred.job.shuffle.input.buffer.percent, which specifies the proportion of the heap to use for this purpose); otherwise, they are copied to disk. When the in-memory buffer reaches a threshold size
(controlled by mapred.job.shuffle.merge.percent) or reaches a threshold number of map outputs(mapred.inmem.merge.threshold), it is merged and spilled to disk.
... View more