1
0

[MINOR] FlinkStateBackendConverter add more exception message (#5809)

* [MINOR] FlinkStateBackendConverter add more  exception message
This commit is contained in:
sandyfog
2022-06-09 15:13:27 +08:00
committed by GitHub
parent f5ab921300
commit 8ff17b0470

View File

@@ -36,7 +36,7 @@ public class FlinkStateBackendConverter implements IStringConverter<StateBackend
case "hashmap" : return new HashMapStateBackend();
case "rocksdb" : return new EmbeddedRocksDBStateBackend();
default:
throw new HoodieException(String.format("Unknown flink state backend %s.", value));
throw new HoodieException(String.format("Unknown flink state backend %s. Supports only hashmap and rocksdb by now", value));
}
}
}