Member since
06-16-2016
22
Posts
0
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2423 | 10-17-2019 05:47 AM | |
6752 | 05-17-2017 02:00 AM |
10-12-2020
09:53 AM
Hi @jeroenr Once you have connected to sqlline you can use # !tables to list the tables created by phoenix. By default SYSTEM.CATALOG", "SYSTEM.FUNCTION", "SYSTEM.LOG", "SYSTEM.MUTEX", "SYSTEM.SEQUENCE", "SYSTEM.STATS" are created.
... View more
10-17-2019
05:47 AM
thanks, that put me in the right direction for completeness, just setting SPARK_HOME was not sufficient, it was missing py4j setting PYTHONPATH fixed that issue export SPARK_HOME=/opt/cloudera/parcels/SPARK2-2.3.0.cloudera3-1.cdh5.13.3.p0.458809/lib/spark2 export PYTHONPATH=$SPARK_HOME/python:$SPARK_HOME/python/lib/py4j-0.10.7-src.zip:$PYTHONPATH Now pyspark shows: version 2.3.0.cloudera3
... View more
04-01-2019
12:36 AM
note that on CDH 5.9.1 there's also a hardcoded size limit in Hive, you also need to upgrade to later CDH version Hive on CDH 5.13.3 is not checking for hardcoded size limit of 4000 characters
... View more
06-07-2017
07:41 AM
thanks, it was the http:// in the proxy server config
... View more
05-17-2017
02:00 AM
a case was opened with support, confirmed that the Java home directory override currently only applies to servers, not to clients.This can lead to Java version inconsistencies. This will be resolved in a future version, and can be tracked via OPSAPS-40053 To specify a Java home directory for all clients, set the variable in file /etc/default/bigtop-utils
... View more
03-10-2017
06:42 AM
the configuration works fine only issue is that the bind user password is not redacted in the advanced configuration snippet and in clear text in the core-site.xml According to the security guide (sensitive data redaction), v5.8.x (not documented for 5.7.x): Redaction of Advanced Configuration Snippet parameters is based on detecting keywords explicitly defined as sensitive in the contents of these parameters. That is, parameters containing the keywords password, key, aws, or secret, will be redacted for users who do not have the required edit privileges I'll open a case to check how to get this working on 5.7.1
... View more
06-17-2016
05:36 AM
1 Kudo
Here's an example; $ curl -v -X PUT -u admin:admin -H 'Content-Type:application/json' -d '{ "password" : "new_password" }' 'http://cm.example.com:7180/api/v12/users/type_the_username_here' [1] https://cloudera.github.io/cm_api/apidocs/v12/ns0_apiUser.html
... View more