Re: http://www.hbql.com/examples/jdbc.html

2011-10-14 Thread Joseph Boyd
If you're interested in JPA with HBase, you might check out the Kundera project, which has JPA support for NoSQL databases as its goal: https://github.com/impetus-opensource/Kundera I'm not a user of it, nor of HBQL though, I just idly follow Kundera's progress. Cheers! ...joe On Fri, Oct

Re: HBase and Cassandra on StackOverflow

2011-08-30 Thread Joseph Boyd
On Tue, Aug 30, 2011 at 12:22 PM, Sam Seigal wrote: > > Will the write call to HBase block until the record written is fully > replicated ? no. data isn't written to disk immediately > If not (since it is happening at the block level), then isn't > there a window where a region server goes down,

ScannerTimeoutException when a scan enables caching, no exception when it doesn't

2011-03-31 Thread Joseph Boyd
We're using hbase 0.90.0 here, and I'm seeing a curious behavior with my scans. I have some code that does a scan over a table, and for each row returned some work to verify the data... I set the scan up like so : byte[] family = Bytes.toBytes("mytable"); Scan scan = new Scan(); scan.setCac

Re: Multiple versions scanning

2011-02-18 Thread Joseph Boyd
scan.setMaxVersions(Integer.MAX_VALUE); // or some other integer On Thu, Feb 17, 2011 at 9:28 PM, Subhash Bhushan wrote: > Hi, > > I am using a prefix mechanism for storing row keys and I have a separate > table to store my secondary index. > Attached is a snapshot of the schema. > > Whe