Re: Phoenix - HBase: complex data

2016-05-06 Thread Josh Elser
Hi Mariana, You could try defining an array of whatever type you need. See https://phoenix.apache.org/array_type.html for more details. - Josh Mariana Medeiros wrote: Hello :) I have a Java class Example with a String and an ArrayList fields. I am using Apache phoenix to insert and read data

RE: How to troubleshoot 'Could not find hash cache for joinId' which is failing always for some users and never for others

2016-05-06 Thread Chabot, Jerry
Thank you for the responses. This is a Production environment which has not exhibited any problems until now. Therefore, we have not had a need to patch HBase. Unfortunately, upgrading Phoenix without patching HBase does not appear to be an option given the upgrade issues I encountered. I will

Re: [ORM] Phoenix and Hbase

2016-05-06 Thread James Taylor
Hello Gustavo, Take a look at Pho[1] which is an ORM layer on top of Phoenix that was recently open sourced by eHarmony. I'm sure they'd love to hear your feedback. Thanks, James [1] https://github.com/eHarmony/pho On Fri, May 6, 2016 at 7:35 AM, Gustavo Oliveira wrote: > Hello, > i have invest

[ORM] Phoenix and Hbase

2016-05-06 Thread Gustavo Oliveira
Hello, i have investigated about ORM tools that lets you "write / access" java objects in Hbase. I know Kundera, DataNucleus but the ideia was to use the power of Phoenix. I thought of using an ORM (what is the most appropriate?) + Phoenix + Hbase. What is your opinion? Has anyone ever tested, us

Phoenix - HBase: complex data

2016-05-06 Thread Mariana Medeiros
Hello :) I have a Java class Example with a String and an ArrayList fields. I am using Apache phoenix to insert and read data from HBase. For the String field, I do something like this: *create table tableName (name varchar(32))* /// *upset into tableName values ('"+ example.getName() +"')"*