Phoenix 4.2.2 compatibility with HBase 0.98.9

2015-01-13 Thread Jamie Murray
Hello! We have recently updated our Hbase to 0.98.9 and we are now getting this error Error: org.apache.hadoop.hbase.DoNotRetryIOException: java.io.IOException: Class org.apache.phoenix.coprocessor.MetaDataEndpointImpl cannot be loaded When attempting to connect to Phoenix 4.2.2 (sqlline.py).

Data type integer representation documentation

2015-01-07 Thread Jamie Murray
Hello, I am looking to find documentation on the integer representation used by Phoenix for its data types listed here: http://phoenix.apache.org/language/datatypes.html Here is what I have found so far, this came from a combination of java.sql types for the non-unsigned types and some

Mapping to a table with arbitrary column qualifiers

2014-12-19 Thread Jamie Murray
Hello, I am looking to map a phoenix view to an existing table. The existing table represents a graph structure in that each row references related rows using this format of (column family) : (column qualifier) c:{key} p:{key} Where c and p are column families and {key} references another

RE: Mapping to a table with arbitrary column qualifiers

2014-12-19 Thread Jamie Murray
column families on a existing table . CREATE VIEW your_table_name(PK VARCHAR PRIMARY KEY, c.column_1 VARCHAR ,p.column_2 VARCHAR) On Fri, Dec 19, 2014 at 9:19 AM, Jamie Murray jamie.mur...@d2l.commailto:jamie.mur...@d2l.com wrote: Hello, I am looking to map a phoenix view to an existing table