How to allow apache apache to handle multiple client requests

I created an external table via hive from hbase. When someone went into the shell and deployed some queries, no one else could run any query. when someone tries to run quesry, he gives the following error.

FAILED: error in metadata: java.lang.RuntimeException: unable to execute instance of org.apache.hadoop.hive.metastore.HiveMetaStoreClient FAILED: Runtime error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask

when the first shell exits, queries can be performed easily. Thus, this means that my bush a cannot handle multiple clients. How to allow processing of multiple clients

0
source share
1 answer

If you have not set up your Hive Metastore, it is not possible for more than one user to access the Hive server.

Built-in Metastor Built-in metastar is mainly used for unit tests. Only one process can connect to the metastore at a time, so it is not really a practical solution, but works well for unit tests.

For more information, see the link.

+1
source

Source: https://habr.com/ru/post/906016/


All Articles