Updated Production Setup (markdown)

Chris Lu 2020-12-08 14:20:24 -08:00
parent 79ea188511
commit 28702c086b

@ -125,9 +125,14 @@ Additional notes:
## Setup multiple filers
If using shared filer store, the filer itself is stateless. You can create multiple peer filers. The metadata and data are all shared.
If using shared filer store, the filer itself is stateless. You can create multiple peer filers. The metadata and data are all shared. This is recommended for production.
If using default embedded filer store, the metadata is not shared. The filers are unaware of each other, but they share the same SeaweedFS object store. So even the file data sits on the same cluster, one filer's data are not addressable by other filers.
If you are also using `weed mount`, you would also need to add `-peers` so that all meta data updates can be sent to the `weed mount`.
```
weed filer -ip=xxx.xxx.xxx.xxx -master=ip1:9333,ip2:9333,ip3:9333 -peers=filer1:8888,filer2:8888
```
If using default embedded filer store, the metadata is not shared. The filer will use the `-peers` information to asynchronously replicate the meta data changes.
# Additional components