From b8c447255e704cd3df019a5ca94c833d85a42461 Mon Sep 17 00:00:00 2001 From: chrislu Date: Fri, 2 Sep 2022 23:17:30 -0700 Subject: [PATCH] Revert "According to the discussion at https://github.com/seaweedfs/seaweedfs/discussions/3555" This reverts commit 13deaa6752617013463d5bcf268fb741a9130b0a. --- Filer-Store-Replication.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Filer-Store-Replication.md b/Filer-Store-Replication.md index d34055a..d2681dc 100644 --- a/Filer-Store-Replication.md +++ b/Filer-Store-Replication.md @@ -57,6 +57,12 @@ filer1(leveldb) <-> filer2(leveldb) <-> filer3(leveldb) filer1(leveldb) <-> filer2(leveldb) ``` +* Two filers with different embedded stores are also fine. Of course, you will need a different `filer.toml`. + +``` +filer1(leveldb) <-> filer2(rocksdb) +``` + * Two filers with one shared store instance are fine. ``` @@ -65,12 +71,6 @@ filer1(mysql) <-> filer2(mysql) # Topologies Not Working! -* Two filers with different embedded stores are not fine! - -``` -filer1(leveldb) <--XX NOT WORKING XX---> filer2(rocksdb) -``` - * Two filers with a shared store and an embedded store are NOT fine. This is because the `filer2` here will not attempt to persist `filer1` metadata updates to its mysql store.