| clear query|facets|time |
Search criteria: .
Results from 21 to 30 from
43 (0.254s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: Designing table with auto increment key - HBase - [mail # user]
|
|
...Thanks everyone for the excellent ideas. Ryan - I kinda understand your suggestion to a point. If time permits, please explain further. What you are suggesting is to create...
|
|
|
Author: Something Something,
2011-02-14, 17:11
|
|
|
Designing table with auto increment key - HBase - [mail # user]
|
|
...Hello, Can you please tell me if this is the proper way of designing a table that's got an auto increment key? If there's a better way please let me know that as well. Afte...
|
|
|
Author: Something Something,
2011-02-13, 18:10
|
|
|
Re: HBase as a backend for GUI app? - HBase - [mail # user]
|
|
...Thanks everybody for the replies. Sounds very reassuring. We will continue with our plan of accessing HBase directly from GWT for our POC. Javamann - I like to be anonymous...
|
|
|
Author: Something Something,
2011-02-04, 00:27
|
|
|
Re: HBase as a backend for GUI app? - HBase - [mail # user]
|
|
...By GUI app, I meant, a browser based application that's written in GWT. For example, let's say an application that allows users to view logs such as, application server logs or 'click ...
|
|
|
Author: Something Something,
2011-02-03, 23:22
|
|
|
Re: Fastest way to read only the keys of a HTable? - HBase - [mail # user]
|
|
...Awesome! It's instantaneous now. Thanks a bunch. Any such tricks for code that looks like this... Get get = new Get(Bytes.toBytes(code)); ...
|
|
|
Author: Something Something,
2011-02-03, 23:09
|
|
|
HBase as a backend for GUI app? - HBase - [mail # user]
|
|
...Is it advisable to use HBase as a backend for a GUI app or is HBase more for storing huge amounts of data used mainly for data analysis in non-online/batch mode? In other words, after ...
|
|
|
Author: Something Something,
2011-02-03, 22:48
|
|
|
Re: Fastest way to read only the keys of a HTable? - HBase - [mail # user]
|
|
...After adding the following line: scan.addFamily(Bytes.toBytes("Info")); performance improved dramatically (Thank you both!). But now I want it to perform even faster, if po...
|
|
|
Author: Something Something,
2011-02-03, 21:35
|
|
|
Re: Fastest way to read only the keys of a HTable? - HBase - [mail # user]
|
|
...Hmm.. performance hasn't improved at all. Do you see anything wrong with the following code: public List getPartners() { ArrayList partners = ...
|
|
|
Author: Something Something,
2011-02-03, 19:27
|
|
|
Re: Fastest way to read only the keys of a HTable? - HBase - [mail # user]
|
|
...Thanks. So I will add this... scan.setFilter(new FirstKeyOnlyFilter()); But after I do this... Result result = scanner.next(); There's no... &nb...
|
|
|
Author: Something Something,
2011-02-03, 06:47
|
|
|
Fastest way to read only the keys of a HTable? - HBase - [mail # user]
|
|
...I want to read only the keys in a table. I tried this... try { HTable table = new HTable("myTable"); Scan scan = new Scan(); scan.addFamily(Bytes.toB...
|
|
|
Author: Something Something,
2011-02-03, 06:01
|
|
|
|