Apache Tajo - Intégration avec Hive

Tajo prend en charge HiveCatalogStore pour s'intégrer à Apache Hive. Cette intégration permet à Tajo d'accéder aux tables dans Apache Hive.

Définir la variable d'environnement

Ajoutez les modifications suivantes au fichier «conf / tajo-env.sh».

$ vi conf/tajo-env.sh  
export HIVE_HOME = /path/to/hive

Après avoir inclus le chemin Hive, Tajo définira le fichier de bibliothèque Hive sur le chemin de classe.

Configuration du catalogue

Ajoutez les modifications suivantes au fichier «conf / catalog-site.xml».

$ vi conf/catalog-site.xml  
<property> 
   <name>tajo.catalog.store.class</name> 
   <value>org.apache.tajo.catalog.store.HiveCatalogStore</value> 
</property>

Une fois HiveCatalogStore configuré, vous pouvez accéder à la table de Hive dans Tajo.