Re: Create table with coprocessors from hbase shell

2013-06-13 Thread Mohammad Tariq
Yeah, it would be good if we have it. Warm Regards, Tariq cloudfront.blogspot.com On Thu, Jun 13, 2013 at 9:45 AM, anil gupta wrote: > Hi Michael & Mohammad, > > I am aware of alter table command and doing the same through java api. But, > i want to add the coprocessor from the hbase shell whi

Re: Create table with coprocessors from hbase shell

2013-06-12 Thread anil gupta
Hi Michael & Mohammad, I am aware of alter table command and doing the same through java api. But, i want to add the coprocessor from the hbase shell while running the create table command. Something like: create 'test', {NAME=>'cf', COMPRESSION=>'SNAPPY'},COPROCESSOR=>'example.coproc' In my opi

Re: Create table with coprocessors from hbase shell

2013-06-12 Thread Mohammad Tariq
Hello Anil and Michael, As of hbase-0.94.4 it is not possible to create a table with co-proc using create command through shell. Though alter has the option to add a co-proc. hbase> alter 't1', METHOD => 'table_att', 'coprocessor'=>'hdfs:///foo.jar|com.foo.FooRegionObserver|1001|arg1=1,arg2

Re: Create table with coprocessors from hbase shell

2013-06-12 Thread Michael Segel
Depending on the version of HBase and thus HBase Shell, what does the help command tell you? If the alter table doesn't have it as an option... then I'd say you're better off writing Java. On Jun 12, 2013, at 7:00 PM, anil gupta wrote: > Hi All, > > I am using hbase(0.94.2) shell to create t

Create table with coprocessors from hbase shell

2013-06-12 Thread anil gupta
Hi All, I am using hbase(0.94.2) shell to create tables that are using coprocessors. I have added coprocessors to existing tables by using HBaseAdmin api. But, now i need to need to add them while creating the table. As per the following link i can alter a table and add a coproc. But, i cannot f