You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2018/11/19 15:41:00 UTC

[GitHub] imamitsehgal closed pull request #7138: Hotfix/flink 10918

imamitsehgal closed pull request #7138: Hotfix/flink 10918
URL: https://github.com/apache/flink/pull/7138
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBKeyedStateBackend.java b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBKeyedStateBackend.java
index 17ba985f883..e9f784eefc2 100644
--- a/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBKeyedStateBackend.java
+++ b/flink-state-backends/flink-statebackend-rocksdb/src/main/java/org/apache/flink/contrib/streaming/state/RocksDBKeyedStateBackend.java
@@ -575,7 +575,7 @@ private RocksDB openDB(
 		try {
 			dbRef = RocksDB.open(
 				Preconditions.checkNotNull(dbOptions),
-				Preconditions.checkNotNull(path),
+				Preconditions.checkNotNull(new Path(path).toString()),
 				columnFamilyDescriptors,
 				stateColumnFamilyHandles);
 		} catch (RocksDBException e) {
@@ -2546,10 +2546,19 @@ void takeSnapshot() throws Exception {
 
 			// create hard links of living files in the snapshot path
 			try (Checkpoint checkpoint = Checkpoint.create(stateBackend.db)) {
-				checkpoint.createCheckpoint(localBackupDirectory.getDirectory().getPath());
+				LOG.info("Checkpoint path is {}.", localBackupDirectory.getDirectory().toString());
+				String path = localBackupDirectory.getDirectory().toString();
+				if(path.startsWith("file:")){
+					path = convertPath(path.replaceFirst("file:",""));
+				}
+				checkpoint.createCheckpoint(path);
 			}
 		}
 
+		private String convertPath(String path ){
+			return new Path(path).toString();
+		}
+
 		@Nonnull
 		SnapshotResult<KeyedStateHandle> runSnapshot() throws Exception {
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services