vote up 0 vote down star

I'm planning to write a program to sync a folder in real time across multiple computers over the internet. I'm wondering if there is any sync algorithm to handle file sync conflicts, ie, computer A tries to save a file, while computer B has removed the file.

flag

3 Answers

vote up 2 vote down check

The example you gave is exactly why synchronization is considered a hard problem.

Computer A has deleted a file which computer B still has. Now: how do you know if the file was added on B, and should be copied to A, or deleted on A, and should be deleted on B? You don't, really. Many synchronization systems have the possibility of conflicting changes which need to be resolved by a human.

Many tools have already been built to do synchronization, including:

  • version control systems, like CVS, Subversion, Mercurial, git, Perforce, etc.
  • standalone, one-directional synchronization programs. They cannot handle changes on either side, but they can make the destination directory look exactly like the source directory. This is better than a complete COPY because it's faster, but it's really basically the same thing. Examples include rsync, ROBOCOPY and XCOPY /MIR on Windows.
  • easy to use internet synchronization tools that synchronize folders on multiple machines. Examples include Windows Live Folder and Dropbox. These apps often resolve conflicts by making extra copies of both versions in subdirectories so that you can sort it out later. They really assume that there will be very very few conflicts.
  • built-in synchronization in sophisticated applications, for example, email/contact/calendar synchronization in Microsoft Exchange, Lotus Notes, etc.
link|flag
vote up 1 vote down

You might also want to look into Unison. It is a multidirectional file synchronization tool that uses the rsync algorithm to make sure that only the changed parts of files are sent.

link|flag
vote up -1 vote down

Windows Live Sync Folder share will do this for you.

Also see: Free Ways to Synchronize Folders Between Computers

link|flag
I'm look for an algorithm, not a app to do the sync – Quincy Oct 15 at 3:05
And that was worth a downvote? oh well... – Mitch Wheat Oct 15 at 5:06
well, it's not a good answer for my question – Quincy Oct 15 at 5:29
..because you are planning to write software that already exists? – Mitch Wheat Oct 15 at 5:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.