| clear query|facets|time |
Search criteria: .
Results from 101 to 110 from
119 (0.085s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: hbase shell snippet for "get" ing records with binary keys - HBase - [mail # user]
|
|
...Sorry, function should be def fetch(table, id, args = {}) get table, String.from_java_bytes(Bytes.toBytes(id)), args end...
|
|
|
Author: Andrey Stepachev,
2010-08-11, 12:40
|
|
|
Re: hbase shell snippet for "get" ing records with binary keys - HBase - [mail # user]
|
|
...And of course, you can use the Power of Ruby: type in shell: def fetch(table, id, args = {}) get table, String.from_java_bytes(Writables.getBytes(id)), args end &nbs...
|
|
|
Author: Andrey Stepachev,
2010-08-11, 12:39
|
|
|
Re: Run MR job when my data stays in hbase? - HBase - [mail # user]
|
|
...2010/7/19 elton sky : Look at org.apache.hadoop.hbase.mapreduce package in hbase sources and as real example: org.apache.hadoop.hbase.mapreduce.RowCounter...
|
|
|
Author: Andrey Stepachev,
2010-07-19, 13:27
|
|
|
Re: Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...Thanks for the link. It is very good news. 2010/7/15 Jonathan Gray : cently a great blog post written about it....
|
|
|
Author: Andrey Stepachev,
2010-07-15, 18:32
|
|
|
Re: Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...Thanks Angus :). But if it true, that i can get rid from version in qualifier (as posted before) it will be huge api simplification (my internal api), because my qualifier ver sions du...
|
|
|
Author: Andrey Stepachev,
2010-07-15, 09:39
|
|
|
Re: Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...Do i understand correct, that if i do: put('table', 'family', 'qual', 'value1', asTimestamp('2009-01-01')) put('table', 'family', 'qual', 'value2', now()) put('table', 'family', 'qual'...
|
|
|
Author: Andrey Stepachev,
2010-07-15, 09:34
|
|
|
Re: Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...Thanks for reply. But it is huge data load, and checkAndPut use get internally. It leads to significant slowdown (70k records per host vs 0.4k records per host). 2010/7/15 Angus He : ...
|
|
|
Author: Andrey Stepachev,
2010-07-15, 09:31
|
|
|
Re: Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...By mistake email was sent ;). To be more specific, here is example of my schema table bsn.main: key: long family: names type:date:version => json object fa...
|
|
|
Author: Andrey Stepachev,
2010-07-15, 08:44
|
|
|
Is it safe to use timestamps (or versions) to load old values. - HBase - [mail # user]
|
|
...Hi all, I use automatic unconditional data load from other sources into my database. But data, already loaded, can be changed by users (or updated by MR jobs, f.e. some foreign keys re...
|
|
|
Author: Andrey Stepachev,
2010-07-15, 08:41
|
|
|
Re: descending keys - HBase - [mail # user]
|
|
...and even better use "string sortable long" (code taken from SOLR) (for reverse order don't forget to subtrcact value from Long.MAX as in message before) // uses binary represen...
|
|
|
Author: Andrey Stepachev,
2010-06-25, 19:03
|
|
|
|