Member since
08-24-2023
12
Posts
0
Kudos Received
0
Solutions
09-14-2023
12:36 AM
I have made all changes in hue.ini in order to connect Hive with Hue ,i was able to connect but uunable to read data from hive getting error as TSocket read 0 Bytes
... View more
Labels:
- Labels:
-
Apache Hive
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