Member since
08-24-2023
12
Posts
0
Kudos Received
0
Solutions
09-14-2023
12:31 AM
keberos authentication is not enabled i have hue and hive in same server [beeswax] # Host where HiveServer2 is running. # If Kerberos security is enabled, use fully-qualified domain name (FQDN). hive_server_host=xxx.xxx.x.xxx # Port where HiveServer2 Thrift server runs on. hive_server_port=10000 Search data and saved documents... hue Task History 3 days ago Creating database sdatabase 3 days ago Creating database saname Jobs Hive Databases (0) Error loading databases. Hive Sample: Customers Email Survey Opt-Ins, Customers for Shipping ZIP Code, Total Amount per Order text 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 -- Get email survey opt-in values for all customers SELECT c.id, c.name, c.email_preferences.categories.surveys FROM customers c; -- Select customers for a given shipping ZIP Code SELECT customers.id, customers.name FROM customers WHERE customers.addresses['shipping'].zip_code = '76710'; -- Compute total amount per order for all customers Query History Saved Queries Query Builder 7 days ago Sample: Customers -- Get email survey opt-in values for all customers SELECT c.id, c.name, c.email_preferences.categories.surveys FROM customers c; -- Select customers for a given shipping ZIP Code SELECT customers.id, customers.name FROM customers WHERE customers.addresses['shipping'].zip_code = '76710'; -- Compute total amount per order for all customers SELECT c.id AS customer_id, c.name AS customer_name, ords.order_id AS order_id, SUM(order_items.price * order_items.qty) AS total_amount FROM customers c LATERAL VIEW EXPLODE(c.orders) o AS ords LATERAL VIEW EXPLODE(ords.items) i AS order_items GROUP BY c.id, c.name, ords.order_id; Assistant Functions Tables Statement 1/3 default.customers Sessions Hive Recreate Close Add a property...FilesFunctionsSettings i have changed the port and tried but same issue Could not connect to 192.168.1.137:10000
... View more
08-29-2023
07:50 AM
Hive to Hue connection is done but getting error as Tsocket read 0bytes
... View more
08-29-2023
06:23 AM
i have installed hive version-apache-hive-3.1.2-bin under bin folder we have hiveserver2 so i gave command hiveserver2 start where do i find hiveserver2 logs ?
... View more
08-29-2023
04:27 AM
ps -ef | grep HiveServer2 hadoop 1512 29707 0 09:31 pts/5 00:00:00 grep --color=auto HiveServer2 [hadoop@sgpllab1137 bin]$ netstat -tuln | grep 10001 [hadoop@sgpllab1137 bin]$ either port 10000 nor 10001 port listening please how to resolve this issue ,repeatedly getting same error
... View more
08-28-2023
06:32 AM
ps -ef | grep HiveServer2 hadoop 1512 29707 0 09:31 pts/5 00:00:00 grep --color=auto HiveServer2 [hadoop@sgpllab1137 bin]$ netstat -tuln | grep 10001 [hadoop@sgpllab1137 bin]$ either port 10000 nor 10001 port listening
... View more
08-28-2023
03:30 AM
keberos authentication is not enabled i have hue and hive in same server [beeswax] # Host where HiveServer2 is running. # If Kerberos security is enabled, use fully-qualified domain name (FQDN). hive_server_host=xxx.xxx.x.xxx # Port where HiveServer2 Thrift server runs on. hive_server_port=10000 i have changed the port Below i got error Could not connect to 192.168.1.137:10000
... View more
08-27-2023
05:11 AM
[beeswax] # Host where HiveServer2 is running. # If Kerberos security is enabled, use fully-qualified domain name (FQDN). hive_server_host=xxx.xxx.x.xxx # Port where HiveServer2 Thrift server runs on. hive_server_port=10001 above are the details i gave in hue.ini file
... View more
08-24-2023
07:33 AM
while connecting hive to hue Got below error TSocket read 0 bytes (code THRIFTTRANSPORT): TTransportException('TSocket read 0 bytes',)
... View more
Labels:
- Labels:
-
Apache Hive
08-24-2023
07:07 AM
Thanks for the info i have Sqoop1.4.7 version installed in our local server 192.168.X.XXX and hue in different server xxx.xxx.x.xxx so in hue.ini config file i have sqoop settings like below ########################################################################### # Settings to configure Sqoop2 ########################################################################### [sqoop] # For autocompletion, fill out the librdbms section. # Sqoop server URL ##server_url=http://192.168.2.112:16000/sqoop # Path to configuration directory sqoop_conf_dir=/home/hadoop/sqoop-1.4.7/conf when i make those changes and run im getting below error as sqoop:could not get connectors
... View more