Re: Pheonix Questions

2014-11-13 Thread Pariksheet Barapatre
Resending in case not reached to dev list On 13 November 2014 16:12, Pariksheet Barapatre pbarapa...@gmail.com wrote: Hello Guys, Hope everybody keeping good. I have few questions - Tested ON - Phoenix4.1 , HBase0.98.1 , 7 RS heap Size - 8 GB 1) PIG gives error whenever I am trying

Pheonix Questions

2014-11-13 Thread Pariksheet Barapatre
Hello Guys, Hope everybody keeping good. I have few questions - Tested ON - Phoenix4.1 , HBase0.98.1 , 7 RS heap Size - 8 GB 1) PIG gives error whenever I am trying to LOAD data from Salted Phoenix table A = LOAD 'hbase://table/RAW_LOG' USING org.apache.phoenix.pig.PhoenixHBaseLoader('pari');

Re: Pheonix Questions

2014-11-14 Thread Pariksheet Barapatre
is available in 4.2 onwards. Regards Ram -Original Message- From: Pariksheet Barapatre [mailto:pbarapa...@gmail.com] Sent: Thursday, November 13, 2014 4:13 PM To: dev@phoenix.apache.org Subject: Pheonix Questions Hello Guys, Hope everybody keeping good. I have

Re: Phoenix monitoring

2015-02-11 Thread Pariksheet Barapatre
for that project! I've also seen a product demo from HP that does a lot of this for other tools on HBase, though I don't think it supports Phoenix yet (cc Rohit). Thanks, Nick On Wednesday, February 11, 2015, Pariksheet Barapatre pbarapa...@gmail.commailto:pbarapa...@gmail.com wrote

Phoenix 4.2 - TableNotFound error

2015-02-12 Thread Pariksheet Barapatre
Hi, Getting weird error - We are trying to run below query, through JDBC SELECT * FROM ABC.TABLE_2 ; ERROR - org.apache.phoenix.schema.TableNotFoundException: ERROR 1012 (42M03): Table undefined. tableName=ABC.TABLE_2 at

Re: Pheonix equivalent HFile

2015-01-11 Thread Pariksheet Barapatre
/mapreduce/CsvBulkLoadTool.java 2. https://github.com/apache/phoenix/blob/master/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/CsvToKeyValueMapper.java On Sun, Jan 11, 2015 at 6:34 PM, Pariksheet Barapatre pbarapa...@gmail.com wrote: Hello All, New year greetings..!!! My question

Pheonix equivalent HFile

2015-01-11 Thread Pariksheet Barapatre
Hello All, New year greetings..!!! My question as follow - How to create Phoenix Salted table equivalent HFile using MapReduce. As per my understanding we can create HFile by specifying HFileOutputFormat.configureIncrementalLoad(job, hTable); What would be the way to create salt and

Re: Pheonix equivalent HFile

2015-01-11 Thread Pariksheet Barapatre
Many Thanks for quick pointer. Let me go through the link and get back. Cheers Pari On 11 January 2015 at 23:10, Ted Yu yuzhih...@gmail.com wrote: Have you looked at https://issues.apache.org/jira/browse/PHOENIX-1454 ? Cheers On Sun, Jan 11, 2015 at 9:34 AM, Pariksheet Barapatre pbarapa

Re: Phoenix monitoring

2015-02-11 Thread Pariksheet Barapatre
Thanks Ted. Cheers Pari On 12 February 2015 at 11:38, Ted Yu yuzhih...@gmail.com wrote: w.r.t. release of 4.3, see this thread: http://search-hadoop.com/m/lz2la1mCuXS Cheers On Wed, Feb 11, 2015 at 9:46 PM, Pariksheet Barapatre pbarapa...@gmail.com wrote: Thanks All for your

Data Model Suggestion

2015-06-23 Thread Pariksheet Barapatre
Hello All, This is more like a HBase question but as I am planning to use Phoenix as a access layer, I hope phoenix user will help me. I would like to create time series data to get on-the-fly analytics. This use case is for adTech. Report - what is houly,daily,weekly impression counts at

Re: Phoenix Pig integration

2015-08-14 Thread Pariksheet Barapatre
help in advance. Regards Pari On 12 August 2015 at 17:59, Pariksheet Barapatre pbarapa...@gmail.com wrote: Many Thanks Ravi. Your solution worked. Let me get a JIRA. Thanks Pari On 10 August 2015 at 20:08, Ravi Kiran maghamraviki...@gmail.com wrote: Hi Pari, I wrote a quick test

Re: Phoenix Pig integration

2015-08-10 Thread Pariksheet Barapatre
2015 at 13:12, Pariksheet Barapatre pbarapa...@gmail.com wrote: Hi Russell, below error I am getting in pig.log Failed to parse: null at org.apache.pig.parser.QueryParserDriver.parse(QueryParserDriver.java:198) at org.apache.pig.PigServer$Graph.validateQuery(PigServer.java:1648

Re: Phoenix Pig integration

2015-08-10 Thread Pariksheet Barapatre
, Pariksheet Barapatre pbarapa...@gmail.com wrote: Hi All, I am trying to run Pig script on Phoenix table. I am using same example given in documentation. CREATE TABLE HIRES( CLIENTID INTEGER NOT NULL, EMPID INTEGER NOT NULL, NAME VARCHAR CONSTRAINT pk PRIMARY KEY(CLIENTID,EMPID)); raw = LOAD

Phoenix Pig integration

2015-08-10 Thread Pariksheet Barapatre
Hi All, I am trying to run Pig script on Phoenix table. I am using same example given in documentation. CREATE TABLE HIRES( CLIENTID INTEGER NOT NULL, EMPID INTEGER NOT NULL, NAME VARCHAR CONSTRAINT pk PRIMARY KEY(CLIENTID,EMPID)); raw = LOAD 'hbase://table/HIRES USING