Re: How to map sparse hbase table with dynamic columns into Phoenix

2016-12-11 Thread Arvind S
Note: as your columns are all in small remember to qualify the table name, column family and column names in double quotes "". Below example i created should help with the rest .. i have used capital letters for table names and cols to make it easy ;) ==

Re: phoenix upsert select query fails with : java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException

2016-12-11 Thread Josh Elser
What's the rest of the stacktrace? You cut off the cause. venkata subbarayudu wrote: I faced a strange issue, that, Phoenix hbase upsert query fails with ArrayIndexOutOfBounds exception. Query looks like: upsert into table (pk,col1, col2, col3) select a.pk ,a.col1,a.col2,a.

phoenix upsert select query fails with : java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException

2016-12-11 Thread venkata subbarayudu
I faced a strange issue, that, Phoenix hbase upsert query fails with ArrayIndexOutOfBounds exception. Query looks like: upsert into table (pk,col1, col2, col3) select a.pk,a.col1,a.col2,a.col3 from table a inner join table b on a.pk=b.pk where b.col2='value' we use hbase-1.1.2 with phoneix-