Github user selvaganesang commented on a diff in the pull request:
https://github.com/apache/incubator-trafodion/pull/166#discussion_r44612244
--- Diff:
core/sqf/src/seatrans/hbase-trx/src/main/java/org/apache/hadoop/hbase/client/transactional/SsccTransactionalTable.java
---
@@ -692,22 +693,23 @@ public SsccPutMultipleTransactionalResponse
call(SsccRegionService instance) thr
}
- // validate for well-formedness
- public void validatePut(final Put put) throws IllegalArgumentException {
- if (put.isEmpty()) {
- throw new IllegalArgumentException("No columns to
insert");
- }
- if (maxKeyValueSize > 0) {
- for (List<KeyValue> list : put.getFamilyMap().values())
{
- for (KeyValue kv : list) {
- if (kv.getLength() > maxKeyValueSize) {
- throw new
IllegalArgumentException(
- "KeyValue size
too large");
- }
- }
- }
- }
- }
+ // validate for well-formedness
+ public void validatePut(final Put put) throws IllegalArgumentException
{
+ if (put.isEmpty()) {
+ throw new IllegalArgumentException("No columns to insert");
+ }
+ if (maxKeyValueSize > 0) {
--- End diff --
This looks like the code is never executed because maxKeyValueSize is not
set at all. Should we remove it? Also, it is not clear why should the keyValue
size should be restricted in Trafodion.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---