Re: how to create collections in the mapper class

2007-12-31 Thread helena21
Thanks, for your response. Just to make my question clear i want to have hashMap and declare it as follows public static class MapClass extends MapReduceBase implements Mapper { private final static LongWritable ONE = new LongWritable(1); private static Map

Re: REST scanner get error 500 0x1b is not valid

2007-12-31 Thread Billy
I have added some filters to filter out some bad data but I am getting a different error now Error 500 The character 0x0 is not valid. Maybe the row key should be returned as urlencoded or something. Billy Billy [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On one of my

RE: REST scanner get error 500 0x1b is not valid

2007-12-31 Thread Jim Kellerman
-Original Message- From: Bryan Duxbury [mailto:[EMAIL PROTECTED] Sent: Monday, December 31, 2007 2:46 PM To: hadoop-user@lucene.apache.org Subject: Re: REST scanner get error 500 0x1b is not valid You're probably right - column names are not base64 encoded. Isn't the contract of

Re: REST scanner get error 500 0x1b is not valid

2007-12-31 Thread Bryan Duxbury
If keys and column names can be any arbitrary byte string, then definitely the REST servlet is not taking care of that right now. The answer is just base64 encoding all that stuff on gets as well. I'll create a new ticket. -Bryan On Dec 31, 2007, at 3:29 PM, Jim Kellerman wrote: