HBASE-24364 [Chaos Monkey] Invalid data block encoding in ChangeEncodingAction (#1707)
Signed-off-by: Jan Hentschel <janh@apache.org>
This commit is contained in:
parent
bab4b1cf8c
commit
a73132c62b
|
@ -46,7 +46,7 @@ public class ChangeEncodingAction extends Action {
|
|||
public void perform() throws IOException {
|
||||
getLogger().debug("Performing action: Changing encodings on " + tableName);
|
||||
// possible DataBlockEncoding id's
|
||||
final int[] possibleIds = {0, 2, 3, 4, 6};
|
||||
final int[] possibleIds = {0, 2, 3, 4, 7};
|
||||
|
||||
modifyAllTableColumns(tableName, (columnName, columnBuilder) -> {
|
||||
short id = (short) possibleIds[random.nextInt(possibleIds.length)];
|
||||
|
|
Loading…
Reference in New Issue