0

I'am speaking of 'direction' in this questions but maybe it isn't the best word. Please correct me if I'm wrong after the full question.

We have 2 file servers, one of them is the active one, and the other is the passive (or backup).

We mainly sync them in after hours, when nobody is working, but time to time, we need to sync them while the users are working.

In that case, and using robocopy, we have two options:

  1. Launch robocopy from the ACTIVE with the direcction of ACTIVE (local Disks) to \PASSIVE(Remote Disks)
  2. Launch robocopy from the PASSIVE with the direcction of ACTIVE (local Disks) to \PASSIVE(Remote Disks)

What of this two options will in your opinion impact less on the performance of the active file server?

My opinion is that launching from the passive will impact less on the performance because of the slowness of SMB protocol... Am I correct?

MadHatter
  • 78,442
  • 20
  • 178
  • 229
Carlos Garcia
  • 318
  • 3
  • 12
  • Thanks for being open to the improvement! I hope you get some answers, though the question isn't in my field so I've nothing helpful to say. – MadHatter Sep 15 '15 at 09:02
  • 1
    If you want to reducde the load on the server, you might want to set the option /IPG:10. This will cause the copy to halt for 10 milliseconds after every 64K. This will slow it down, but will also reduce the load on your server's resources. Not an answer to your question, but I think this will be very useful for you. – ZEDA-NL Sep 15 '15 at 10:06

1 Answers1

0

My opinion: Option 2 - robocopy running on the passive copy.

If you sync with robocopy, it will create the checksums of each file and look for changes. These are cpu operations. So letting the robocopy process work on the passiv machine will leave more cpu for the daily business of the active file server.

BUT: i'm not shure if your explenation of option 2 is right: because if you are starting robocopy on the passive server, this will be the local disc, and the active server will be the remote disk - right?

Tobias
  • 1,236
  • 13
  • 25
  • Thanks @Tobias, about your question... Not really, starting it from the passive just swap the origin to a \\Active\Disk$ and the destination to LocalDisk\Folder. – Carlos Garcia Sep 15 '15 at 09:40