Created 02-21-2018 04:00 PM
Hello,
We've the following Hive migration scenario where there are several variable/changes, we need to migrate Hive data from Source to Target
Source | Target |
Cluster A | Cluster B |
HDP 2.5.3 | HDP 2.6.2 |
Hive metastore DB - MySQL | Hive metastore DB - Oracle |
Has 7 databases to migrate | No existing data to preserve |
Both clusters are on the same network, both have HDP running. What's the most efficient way to migrate existing Hive data to the new cluster. Thanks.
Created 02-23-2018 04:32 AM
If you have both the clusters up and running, you can export tables from one cluster to another using Hive import export commands if the databases are not very large.
https://cwiki.apache.org/confluence/display/Hive/LanguageManual+ImportExport
Created 02-23-2018 04:32 AM
If you have both the clusters up and running, you can export tables from one cluster to another using Hive import export commands if the databases are not very large.
https://cwiki.apache.org/confluence/display/Hive/LanguageManual+ImportExport
Created 03-14-2018 02:10 AM
The Hive Export/Import worked well for us. Thanks.