Zakelly commented on code in PR #25772:
URL: https://github.com/apache/flink/pull/25772#discussion_r1878480090
##########
flink-state-backends/flink-statebackend-forst/src/main/java/org/apache/flink/state/forst/ForStResourceContainer.java:
##########
@@ -190,7 +191,10 @@ public DBOptions getDbOptions() {
// configured,
// fallback to local directory currently temporarily.
if (remoteForStPath != null) {
- flinkEnv = new FlinkEnv(remoteForStPath.toString(),
forstFileSystem);
+ flinkEnv =
+ new FlinkEnv(
+ remoteForStPath.toString(),
+ new StringifiedForStFileSystem(forstFileSystem));
Review Comment:
The non-stringified methods are still invoked within Flink, please search
the invoker of `ForStResourceContainer#getFileSystem()`. While the stringified
form is only used by JNI.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]