Member since
11-14-2015
268
Posts
122
Kudos Received
29
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2612 | 08-07-2017 08:39 AM | |
4081 | 07-26-2017 06:06 AM | |
9601 | 12-30-2016 08:29 AM | |
7557 | 11-28-2016 08:08 AM | |
7235 | 11-21-2016 02:16 PM |
05-23-2016
03:17 PM
can you check whether your master is running or not? ERROR: Can't get master address from ZooKeeper; znode data == null
... View more
05-23-2016
11:07 AM
can you try with below command sqoop import-all-tables --connect jdbc:mysql://mysql_server/mysql_table --table mysql_table_name --hbase-table hbase_table_name --column-family metadata --hbase-create-table --username root -P
... View more
05-20-2016
12:35 PM
3 Kudos
Yes, sqoop considers split-by column(--split-by <column-name>) as the rowkey if --hbase-row-key is not specified.
... View more
05-20-2016
12:31 PM
1 Kudo
Hbase is a key value store so it will require any one col to be declared as row key. can you share the schema of sqllserver and how you want it to look in hbase?
... View more
05-20-2016
07:52 AM
Hi @Raghu Gurrala, Would you mind taking a look of below page. http://www.theshell.guru/native-memory-allocation-mmap-failed-to-map-xx-bytes-for-committing-reserved-memory-jdk-1-8-centos-6-7/ This guy also faced the same problem and I think he has the working fix.
... View more
05-20-2016
07:21 AM
No Sunile, currently phoenix doesn't support creating custom coprocessors endpoints and calling them using a sql construct.
... View more
05-12-2016
07:45 AM
It seems , we can do in same way for squirrel. http://stackoverflow.com/questions/23770235/squirrel-sql-exception-logging JFYI , sqlline can also be used as a remote client.
... View more
05-12-2016
06:42 AM
Modify PHOENIX_HOME/bin/log4j.properties to log DEBUG/INFO in logs or console. It will log in current_path/psql.log psql.root.logger=DEBUG,console,DRFA
log4j.threshold=DEBUG And, sqlline.py expects log4j.properties in current path (from where you are running the sqlline)
... View more
05-05-2016
07:26 AM
1 Kudo
Look at Option 1 on below post. https://community.hortonworks.com/questions/27312/hbase-shell-is-throwing-corruptedsnapshotexception.html#answer-27318
... View more
04-20-2016
06:15 PM
export HADOOP_CLASSPATH=$HADOOP_CLASSPATH:/path/hbase<version>.jar run /etc/hbase/conf/hbase-env.sh And, echo $HADOOP_CLASSPATH and check all the required hbase jars are there. Then, java -cp $HADOOP_CLASSPATH:applicationJar package.class
... View more