Member since
08-04-2017
18
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2035 | 01-08-2019 09:11 AM |
10-22-2019
11:49 AM
1 Kudo
Hi Meher, Kudu will not integrate with Hive Metastore (HMS) without specific changes. Consider the following from kudu.apache.org. "Kudu has an optional feature which allows it to integrate its own catalog with the Hive Metastore (HMS). The HMS is the de-facto standard catalog and metadata provider in the Hadoop ecosystem. When the HMS integration is enabled, Kudu tables can be discovered and used by external HMS-aware tools, even if they are not otherwise aware of or integrated with Kudu. " You'll need to configure Kudu to integrate with HMS. https://kudu.apache.org/docs/hive_metastore.html
... View more
01-09-2019
05:57 AM
@Meher I am happy to see that you resolved your issue. Would you mind sharing how you solved it in case someone else encounters the same situation?
... View more
09-24-2018
01:26 PM
I'm able to resolve this issue. In my case IP address is incorrect in /etc/hosts file. Once corrected able to add host successfully. Thanks, Meher
... View more
08-15-2017
10:21 PM
Sqoop does not come with the JDBC driver , as you already knew that sqoop is just a client tool it uses the JDBC driver to connect to data source in our case its MYSQL , if you look under the directory /var/lib/sqoop/ should have a MYSQL jdbc driver , internally it will take care of all the connections ,query execution , result sets etc . Since we are using localhost it will connect the locally runining server , if you want to access the remote server then we use 3306 , however you can also mention the port number when refering to localhost , i dont have the vm to see their socket file configuration . moreover you have to enforce the TCP/IP connection because by default when we use localhost it will refer the socket file . Hope this helps .
... View more