mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
According to the discussion at https://github.com/seaweedfs/seaweedfs/discussions/3555
parent
b51bc33d42
commit
13deaa6752
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue