Member since
10-04-2016
243
Posts
281
Kudos Received
43
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1172 | 01-16-2018 03:38 PM | |
6140 | 11-13-2017 05:45 PM | |
3034 | 11-13-2017 12:30 AM | |
1519 | 10-27-2017 03:58 AM | |
28429 | 10-19-2017 03:17 AM |
05-15-2017
03:12 PM
1 Kudo
I am using HDP 2.4.0.7.
I am trying to find the default values for the following properties for Phoenix/HBase: hbase.hconnection.threads.max
phoenix.client.connection.max.allowed.connections Since these values have not been set, I believe it will use the default value. I want to know the default values.
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache Phoenix
05-10-2017
04:36 AM
1 Kudo
Just wanted to understand if there is any functional difference on how sort and orderBy functions on DataFrame works. Can it be compared to total order sorting across all partitioner outputs or sorting on data within each partition and no guarantee of total order sorting ? Based on the clarifications, I would like to know the usage of both the functions.
... View more
Labels:
- Labels:
-
Apache Spark
05-08-2017
07:52 PM
Thank you. This solved the problem.
... View more
05-08-2017
03:07 PM
1 Kudo
I want to avoid setting auto-commit=true by default, thus I am not adding the required property in hbase-site.xml. However, I want to add auto commit property to the jdbc url so that I can get a connection with autocommit=true on need basis. I am not able to find how to add this property to connection url. I have a kerberized cluster and I an using the following url: jdbc:phoenix[:zk_quorum][:zk_port][:zk_hbase_path][:headless_keytab_file:principal] I also tried the following approach but it did not connect due to malformed url: jdbc:phoenix[:zk_quorum][:zk_port][:zk_hbase_path][:headless_keytab_file:principal][:AutoCommit=true]
... View more
Labels:
- Labels:
-
Apache HBase
-
Apache Phoenix
04-12-2017
12:55 AM
Perfect. Thank you.
... View more
04-12-2017
12:54 AM
Thank you Deepesh.
... View more
04-11-2017
02:19 PM
2 Kudos
I want to understand how the applicationId is generated when a job is submitted to Yarn.
... View more
Labels:
- Labels:
-
Apache YARN
04-03-2017
06:44 PM
Thank you. Upvoted your answer.
... View more
04-03-2017
06:44 PM
Thank you @Deepesh. Turns out there was a different version of code in different clusters. So, when I used CAST it worked fine.
... View more
04-01-2017
04:21 AM
1 Kudo
As per this JIRA HIVE-11217, there was a bug in Hive where a CTAS statement having NULL in select clause throws IllegalArgumentException:Unknown primitive type VOID. The bug was fixed and patched in version 1.3.0 and 2.0.0 as per the JIRA and the solution was to use CAST to specify a type when having NULL in select clause. If I am using Hive 1.2.x and my CTAS select clause has "CAST(null as bigint)" will it still throw IllegalArgumentException:Unknown primitive type VOID ?
... View more
Labels:
- Labels:
-
Apache Hive