Member since
01-22-2019
23
Posts
6
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
224 | 01-16-2025 10:28 PM | |
1557 | 01-03-2024 05:39 AM |
01-20-2025
02:20 AM
#!/bin/bash
# Input data
input_file="input.txt"
# Separate the header and the data
header=$(head -n 1 "$input_file")
data=$(tail -n +2 "$input_file")
# Sort the data numerically by the first column
sorted_data=$(echo "$data" | sort -t';' -k1,1n)
# Combine the header with the sorted data
echo "$header"
echo "$sorted_data"
... View more
01-20-2025
02:06 AM
HI @Kalpit , I believe you are using wrong jar, you need to take the correct jar (It needs to be phoenix-version-client.jar, )
... View more
01-20-2025
12:20 AM
@cloude Thank you for your answer. Now I understand that is expected behavior. I'll consider solution. Thanks,
... View more
01-16-2025
10:21 PM
Hi All, It was issue related to config setting. After setting the environment properly issue got resolved. It seems due to some misconfiguration of JAAS and krb5.conf. Following below blog has resolved the issue http://shantanu01.blogspot.com/2020/06/how-to-setup-beeline-on-linux-for.html
... View more
09-11-2024
06:29 AM
Hi @Marks_08 In Hive is HBase dependency is enabled? If No, can you follow the below doc https://docs.cloudera.com/cdp-private-cloud-base/7.1.6/accessing-hbase/topics/hbase-configure-hive-hbase-pvc.html If yes, we require the complete HS2 logs as well as the Yarn application logs to troubleshoot further. Along with that share us the DDL for both Managed and external tables DESCRIBE FORMATTED <TABLE_NAME>; SHOW CREATE TABLE <TABLE_NAME>; Replace TABLE_NAME with the managed and external tables. Thank You.
... View more
08-06-2024
06:38 AM
Hi @cloude, I changed 'ranger.usersync.ldap.referral' from 'ignore' to 'follow'. But it still doesn't work.. Thanks.
... View more
08-05-2024
12:01 AM
Hello @cloude even after adding those parameters I get the 302 error, wondering if the issue is not on the Knox part though now but thank you very much for your answer
... View more
01-17-2024
10:20 PM
@Nardoleo, Did any of the responses assist in resolving your query? If it did, kindly mark the relevant reply as the solution, as it will aid others in locating the answer more easily in the future.
... View more
01-09-2024
08:14 PM
@SylvainL It seems your API request has some issues, Can you share the full request you are sending to /flow-files?
... View more
01-06-2024
07:35 PM
@phir1 , Create a queue for each dept and assign the requested resources. Now you know the dept is using how much resources.
... View more