Skip to content

Commit 8ff17b0

Browse files
authored
[MINOR] FlinkStateBackendConverter add more exception message (#5809)
* [MINOR] FlinkStateBackendConverter add more exception message
1 parent f5ab921 commit 8ff17b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/util/FlinkStateBackendConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public StateBackend convert(String value) throws ParameterException {
3636
case "hashmap" : return new HashMapStateBackend();
3737
case "rocksdb" : return new EmbeddedRocksDBStateBackend();
3838
default:
39-
throw new HoodieException(String.format("Unknown flink state backend %s.", value));
39+
throw new HoodieException(String.format("Unknown flink state backend %s. Supports only hashmap and rocksdb by now", value));
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)