Set Hive Table Replication
To set the replication factor of a table while loading it to HIVE you need to set the following property on the hive client.
SET dfs.replication=2;
LOAD DATA LOCAL ......;
60
Kudos
60
Kudos
To set the replication factor of a table while loading it to HIVE you need to set the following property on the hive client.
SET dfs.replication=2;
LOAD DATA LOCAL ......;
Recently, I’ve been evaluating using Scalding to replace some parts of our ETL. Scalding is a Scala library that makes it easy to specify Hadoop MapReduce jobs. Scalding is built on top of Cascading, a Java library that abstracts away... Continue →