0

So, we are in 2020 and many of the answers from similair questions might be outdated.

What is the best way for real time file syncronization between linux servers. It's serveral million small json files (1kb)

It should be possible for two (or more) servers to sync. example.

File written (created/modified) to ServerA is synced to ServerB And ServerC

File deleted on ServerB will also be deleted on ServerA and ServerC

If ServerA, ServerB or ServerC is unavailable, it will be updated once its available again. Changes might also happend on the unavailable server, so it should also push to the others. should be possible with conflict logging.

Should also support one directory with all files and subdirectories.

What would be the correct way to achiev this?

Mr Zach
  • 239
  • 1
  • 6

1 Answers1

1

Look into Resilio Sync for this purpose. I noticed you didn't describe your budget ;)

ewwhite
  • 194,921
  • 91
  • 434
  • 799