Member since
03-16-2016
8
Posts
6
Kudos Received
0
Solutions
09-23-2016
12:01 PM
This is a good discussion on setting reducers: https://community.hortonworks.com/questions/28073/how-do-you-force-the-number-of-reducers-in-a-map-r.html As with all performance tuning, best to isolate a bottleneck and tune that vs. simply trying a lot of things at the same time. So yes, among other tuning ... set this and see if it works. If not, move to the next suspected bottleneck.
... View more
08-04-2016
01:51 PM
@Prasanna Kulkarni It looks like there is are JIRAs for this. They are not resolved and there hasn't been any recent activity: https://issues.apache.org/jira/browse/HIVE-6897 https://issues.apache.org/jira/browse/HCATALOG-551
... View more
04-19-2016
09:22 AM
You need to add jars with -libjars not -libjar you can also add your connector jar as dependency to your project as I am not able to find a maven pom you can include. You also need to make sure if you do put the jar in lib of hadoop ditectories, you need to place it on every node. You can also get familiar with DistributedCache API to upload jars in hdfs for access. https://hadoop.apache.org/docs/current/api/org/apache/hadoop/filecache/DistributedCache.html
... View more