Member since
08-16-2016
642
Posts
131
Kudos Received
68
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3978 | 10-13-2017 09:42 PM | |
| 7475 | 09-14-2017 11:15 AM | |
| 3799 | 09-13-2017 10:35 PM | |
| 6035 | 09-13-2017 10:25 PM | |
| 6602 | 09-13-2017 10:05 PM |
06-06-2017
03:15 PM
Do you mean that HUE is installed on a master node? The HUE configs will contain an [impala] section and that will contain the Impala Daemon used by HUE. It will only connect to that ImpalaD.
... View more
06-06-2017
11:16 AM
1. I needs to be on of the Impala daemons. They will act as the connection manager, coordinator, and still execute queries. 2. The Impala daemon has its own ports and it has one specifically for clients like the impala-shell and ones coming over ODBC and JDBC. The latter should be 21050, by default. 3. CM and HUE have they own backend authentication that can be separate than CDH. Use the auth. mech. to match CDH. 4. SSL is only needed if Impala is configured to use SSL. Since you have CM access, you should be able to review the CM configs. I don't have the specific settings on hand but search for anything related to SSL, TLS, or Kerberos. You can also verify the port and the hostnames of the Impala daemons.
... View more
06-06-2017
10:22 AM
SASL is an over-the-wire encryption method. I don't think it used by Impala. It is used by thrift clients live Hive CLI and Beeline. Impala has the option to enable SSL for encryption or to have nothing. Do you have SSL enabled for Impala? Port 1433 is not the default port for Impala. Did you change it?
... View more
06-05-2017
04:29 AM
It was due to the rogue node. i had to delete that node from cluster. This is fine now.
... View more
06-02-2017
12:56 AM
So we shutdown the cluster in order to upgrade the network cards to 10Gbit on all machines. It worked flawlessly after the cluster came back up again. The same transformation is now taking around 5 mins every time and the load on the cluster is mild. Not sure if the mismatch in network speeds between the nodes or some sort of a lumbo state that the cluster was in was the problem. Maybe it was even a combination of those two. Now it works as expected. Thanks for the help @mbigelow
... View more
06-01-2017
08:37 PM
Thank you, I gonna verify it.
... View more
06-01-2017
07:54 AM
Thanks!. Looks like your suggested call successfully returned.
... View more
05-31-2017
09:10 PM
I don't know as I have only ever installed CM with an external DB. If that is displayed in the CM UI, I feel like yes, it will go away once you start using an external DB, especially since it mentions the embedded DB.
... View more
05-29-2017
04:25 AM
While you create external table - mention the LOCATION ' ' ( i,e The default location of Hive table is overwritten by using LOCATION ) Then load data from HDFS using ' inpath ' - if you drop the table it will only remove the pointer from the hdfs and will not delete the data in the hdfs. CREATE EXTERNAL TABLE text1 ( wban INT, date STRING)
ROW FORMAT DELIMITED
FIELDS TERMINATED BY ‘,’
LOCATION ‘ /hive/data/text1’; LOAD DATA INPATH ‘hdfs:/data/2000.txt’ INTO TABLE TABLE_NAME ;
... View more
05-24-2017
02:37 PM
https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/ArchivalStorage.html I recommend opening a new topic you have any other questions on storage pools. That way this discussion can stay on topic.
... View more