You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/06/09 05:14:07 UTC

[GitHub] [hudi] sandyfog commented on a diff in pull request #5809: [MINOR] FlinkStateBackendConverter add more exception message

sandyfog commented on code in PR #5809:
URL: https://github.com/apache/hudi/pull/5809#discussion_r893077102


##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/util/FlinkStateBackendConverter.java:
##########
@@ -36,7 +36,7 @@ public StateBackend convert(String value) throws ParameterException {
       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. support only hashmap and rocksdb by now", value));
     }

Review Comment:
   Thank You !



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org