Member since
01-22-2019
24
Posts
6
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
365 | 01-16-2025 10:28 PM | |
1791 | 01-03-2024 05:39 AM |
03-03-2025
11:40 PM
Can you try disabling the spark.authentication ? spark.authenticate = false
... View more
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-17-2025
05:45 PM
@Kalpit , May i know which cdp version you are using and from where you get this command to do bulk upload ?
... View more
01-16-2025
10:28 PM
Hi @tono425 , You cannot write a empty struct in parquet. This is due to the way the parquet format works, a parquet file only consists of leaf field data, the intermediate structure is not stored and can be inferred using the schema and the repetition levels and definition levels of the written leaf fields. An empty struct (which is written as a group) has no leaf fields and that is why parquet fails to write this, I would suggest to change the format or filter the value before converting.
... View more
01-16-2025
10:25 PM
Hi @Kalpit , Can you try increasing the below values in hbase HBase Service Advanced Configuration Snippet (Safety Valve) for hbase-site.xml & HBase Client Advanced Configuration Snippet (Safety Valve) for hbase-site.xml hbase.client.keyvalue.maxsize=150485760 hbase.server.keyvalue.maxsize=150485760
... View more
01-15-2025
02:25 AM
@tosinghkunal , Ideally, you don't even need to provide the !connect string it should be automatically connecting to beeline after type beeline. your cluster is having ssl enabled ? if yes can you check the value of this file - /etc/hive/conf.cloudera.hive_on_tez/beeline-site.xml it should be similar to below <?xml version="1.0" encoding="UTF-8"?> <!--Autogenerated by Cloudera Manager--> <configuration> <property> <name>beeline.hs2.jdbc.url.default</name> <value>hive_on_tez</value> </property> <property> <name>beeline.hs2.jdbc.url.hive_on_tez</name> <value>jdbc:hive2://ccycloud.cdpy.root.comops.site:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2;trustStoreType=jks;sslTrustStore=/var/lib/cloudera-scm-agent/agent-cert/cm-auto-global_truststore.jks;trustStorePassword=sLWNrcWS4SBAqZRtYJ9BVbNxoVwEbfS6hn2stjiezxq</value> </property> </configuration>
... View more
08-05-2024
11:25 PM
1 Kudo
@JiHoone Can you update this configuration ranger.usersync.ldap.referral=Follow
... View more
08-04-2024
07:13 PM
@TMauran Let me know if its resolve, please accept as solution so that it will be helpful for others as well.
... View more
08-02-2024
09:34 PM
1 Kudo
Hi, it seems like your external table is on top of the HBase table, you can check the application logs and see which container is failing and on which node and look into that node manager logs.
... View more