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
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,
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
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