Re: Non-transactional table has transaction-like behavior

2016-04-04 Thread Josh Elser
Let's think back to before transactions where added to Phoenix. With autoCommit=false, updates to HBase will be batched in the Phoenix driver, eventually flushing on their own or whenever you invoked commit() on the connection. With autoCommit=true, updates to HBase are flushed with every

Non-transactional table has transaction-like behavior

2016-04-04 Thread F21
I am using HBase 1.1.3 with Phoenix 4.8.0-SNAPSHOT. To talk to phoenix, I am using the phoenix query server with serialization set to JSON. First, I create a non-transactional table: CREATE TABLE my_table3 (k BIGINT PRIMARY KEY, v VARCHAR) TRANSACTIONAL=false; I then send the following