Member since
10-05-2015
105
Posts
83
Kudos Received
25
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1310 | 07-13-2017 09:13 AM | |
1549 | 07-11-2017 10:23 AM | |
782 | 07-10-2017 10:43 AM | |
3597 | 03-23-2017 10:32 AM | |
3546 | 03-23-2017 10:04 AM |
12-30-2016
08:27 AM
After rolling back the configurations have you restarted the server?
... View more
12-30-2016
07:01 AM
You have mentioned HDP version 2.4.2 and Phoenix Version as 4.7 But HDP 2.4.2 supports Phoenix version 4.4? Can you check the versions properly. You can upgrade to HDP 2.5 to use Name space feature supported. then things should work properly.
... View more
11-29-2016
09:51 AM
@ARUN Or else can you try something similar to type convertion. A = load 'hbase://query/select col1,col2.. from TRANSACTION' using org.apache.phoenix.pig.PhoenixHBaseLoader('localhost') as (rowKey:chararray,col_a:int, col_b:double, col_c:chararray);
... View more
11-29-2016
09:40 AM
1 Kudo
Yes Export generate sequence files. If you want to import back the exported data to other HBase table in different cluster then you can use it other wise it won't help. Pig should map the data types properly. Can you try specifying the columns list than * and check. For eg: A = load 'hbase://query/select col1,col2.. from TRANSACTION' using org.apache.phoenix.pig.PhoenixHBaseLoader('localhost');
... View more
11-29-2016
09:06 AM
Better to go with @Ankit Singhal suggestion of using pig/hive or spark to export.
... View more
11-29-2016
08:58 AM
1 Kudo
Phoenix pherf utility exports details like how much time the query took etc..not the data. There is no way to export data into csv from Phoenix. Can't you use Export utility provided by HBase.
... View more
11-17-2016
08:43 AM
The index rebuild does full table scan of data table there is a chance of timeout. Can you try increasing the timeout values of below properties and retry rebuilding index. Once you add/change the configurations then you need to export HBASE_CONF_DIR or HBASE_CONF_PATH with directly having hbase-site.xml. hbase.client.scanner.timeout.period=1200000
hbase.rpc.timeout=1200000
hbase.regionserver.lease.period = 1200000
phoenix.query.timeoutMs = 600000
... View more
11-16-2016
07:01 AM
@pan bocun From the snapshot you have provided writing to index got failed at timestamp 1478692767291 that's why the indexes got disabled. They will be automatically rebuild by the Phoenix in the background. If you see the index failure taking more time then you can drop the index and recreate it.
... View more
11-07-2016
03:15 PM
5 Kudos
You can add following property with true to balance by table and restart masters. hbase.master.loadbalance.bytable
... View more