Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Invalid
-
2.0.0
-
None
-
None
-
hbase 2.0.0 in HDP 3.1.0.0
Description
I create table by phoenix, like this sql:
CREATE TABLE IF NOT EXISTS T_ORIGIN_MSG(
MSG_ID VARCHAR(32) not null primary key,
MSG VARBINARY,
UPDATE_TIME DATE) COMPRESSION='SNAPPY',DURABILITY='ASYNC_WAL' split on ('8');
Then upsert data in a loop. Regionserver was crash, the infomation ref attanchment. If I don't set ASYNC_WAL it will work .