Member since
12-09-2015
14
Posts
5
Kudos Received
0
Solutions
06-24-2016
09:19 PM
No Ambari support? Cloudera Manager can manage HBase Thrift and REST servers as separate roles.
Thrift server is needed by Hue HBase GUI.
... View more
03-27-2016
11:14 PM
Lets say you have an existing HBase table called "transactions", column family called "transactions" that has a column called transactionId. You can map that table to a Phoenix view with: CREATE VIEW "TransactionHistory" (k VARCHAR primary key, "Transactions"."transactionId" VARCHAR);. Now you should be able to Select "transactionId" from "Transactions". You can use ALTER VIEW to add additional columns from he HBASE table after that.
... View more
01-11-2016
09:56 PM
You have to create links in the directory where `sqlline.py` lives to 2 .xml files that are provided by HBase/Hadoop. $ pwd
/usr/hdp/2.2.8.0-3150/phoenix/bin
$ ll | grep xml
lrwxrwxrwx 1 root root 29 Dec 16 13:34 core-site.xml -> /etc/hbase/conf/core-site.xml
lrwxrwxrwx 1 root root 30 Dec 16 13:34 hbase-site.xml -> /etc/hbase/conf/hbase-site.xml With those in place and `$JAVA_HOME` and `java` on your `$PATH`, you can now run `sqlline.py`: $ ./sqlline.py localhost:2181/hbase-unsecure
... View more
01-25-2018
04:38 PM
@Sai Geetha M N please read our latest docs https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.4/bk_spark-component-guide/content/ch_introduction-spark.html and https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.4/bk_spark-component-guide/content/ch08s05.html it's been out for a while now.
... View more
12-15-2015
10:42 PM
@Cui Lin Could you accept one of the answers related to originial question and post this as new thread? It will help to keep the flow clean.
... View more
11-21-2017
10:58 AM
Hi All,
I am new to this and I am facing the same error. I have checked hbase-site.xml (value of zookeeper.znode.parent is /hbase-unsecure) I have given it's path in the CLASSPATH (and even in PATH variables). My code is bundled in a jar and while running as well I tried giving the path using the -cp.
I see no error logs either in HBase or in Zookeeper.
Is there anything I need to check further?
... View more