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.