File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 18
18
19
19
package org .apache .hadoop .hbase .regionserver ;
20
20
21
+ import org .apache .commons .lang .builder .ToStringBuilder ;
21
22
import org .apache .hadoop .hbase .classification .InterfaceAudience ;
22
23
import org .apache .hadoop .hbase .HColumnDescriptor ;
23
24
import org .apache .hadoop .hbase .KeepDeletedCells ;
@@ -146,4 +147,19 @@ public long getTimeToPurgeDeletes() {
146
147
public KVComparator getComparator () {
147
148
return comparator ;
148
149
}
150
+
151
+ @ Override
152
+ public String toString () {
153
+ return new ToStringBuilder (this )
154
+ .append ("family" , Bytes .toStringBinary (family ))
155
+ .append ("minVersions" , minVersions )
156
+ .append ("maxVersions" , maxVersions )
157
+ .append ("ttl" , ttl )
158
+ .append ("keepDeletedCells" , keepDeletedCells )
159
+ .append ("timeToPurgeDeletes" , timeToPurgeDeletes )
160
+ .append ("tableMaxRowSize" , tableMaxRowSize )
161
+ .append ("usePread" , usePread )
162
+ .append ("cellsPerTimeoutCheck" , cellsPerTimeoutCheck )
163
+ .append ("parallelSeekEnabled" , parallelSeekEnabled ).toString ();
164
+ }
149
165
}
You can’t perform that action at this time.
0 commit comments