Re: TableInputFormat configuration problems with 0.90

2011-02-28 Thread Dan
Sure, I've put this up on Jira here :- https://issues.apache.org/jira/browse/HBASE-3578 On Wed, Feb 23, 2011 at 11:36 PM, Jean-Daniel Cryans jdcry...@apache.orgwrote: Yeah it should, also I'm pretty sure you're right to say that this regression comes from HBASE-2036... would you mind opening

Re: TableInputFormat configuration problems with 0.90

2011-02-23 Thread Jean-Daniel Cryans
How do you create the configuration object Dan? Are you doing: Configuration conf = HBaseConfiguration.create(); Job job = new Job(conf, somename); or are you just creating a normal Configuration? BTW the code I wrote is what I expect people do and what I'm doing myself. J-D On Wed, Feb 23,

Re: TableInputFormat configuration problems with 0.90

2011-02-23 Thread Dan Harvey
Ah ok, most of the time we were using the default Hadoop configuration object and not the HBase one. I guess that's a change between 0.20 and 0.90? Would it not make sense for the TableMapReduceUtil class to do that for you? As you'll need it in every HBase map reduce job. Anyway, I guess we

Re: TableInputFormat configuration problems with 0.90

2011-02-23 Thread Jean-Daniel Cryans
Yeah it should, also I'm pretty sure you're right to say that this regression comes from HBASE-2036... would you mind opening a jira? Thanks for the report and the digging Dan! J-D On Wed, Feb 23, 2011 at 3:30 PM, Dan Harvey danharve...@gmail.com wrote: Ah ok, most of the time we were using