From 13deaa6752617013463d5bcf268fb741a9130b0a Mon Sep 17 00:00:00 2001 From: michagruner Date: Fri, 2 Sep 2022 11:19:26 +0200 Subject: [PATCH] According to the discussion at https://github.com/seaweedfs/seaweedfs/discussions/3555 --- 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 d2681dc..d34055a 100644 --- a/Filer-Store-Replication.md +++ b/Filer-Store-Replication.md @@ -57,12 +57,6 @@ 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. ``` @@ -71,6 +65,12 @@ 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.