java - Maximum size of cell in hbase-default.xml for a particular table -
is possible configure maximum size of cell in hbase-default.xml particular table.
if possible tell me list of ways through configure maximum cell size.
reference: got error, java.lang.illegalargumentexception: **keyvalue size** large @ org.apache.hadoop.hbase.client.htable.validateput(htable.java:1312) @ org.apache.hadoop.hbase.client.htable.doput(htable.java:941) @ org.apache.hadoop.hbase.client.htable.put(htable.java:908)
thanks , regards, hari
your exception related conf.
hbase.client.keyvalue.maxsize
you can set in java as:
conf.set("hbase.client.keyvalue.maxsize",value);
this specifies combined maximum allowed size of keyvalue instance. set upper boundary single entry saved in storage file. since cannot split helps avoiding region cannot split further because data large. seems wise set fraction of maximum region size. setting 0 or less disables check.
Comments
Post a Comment