I have a project where we are moving from on-premise file share to AWS FSx. I need your suggestion on data synchronization. I decided to use the RoboCopy tool to copy the data. We need to also copy data with file permissions. I'm using the command below:
ROBOCOPY <source> <target> /MIR /SEC /SECFIX /LOG+:<log_file>
According to the plan, we are copying all the data to FSx. As there are some processes that generate frequent data in the on-premise drive, we have to synchronize the data again. So if I run RoboCopy tool again, will take the same time as the time it took for the actual data copy. What is the best way to synchronize the delta data?
And another question if I may ask. So the data is compressed on on-premise share. And FSx for Windows file share I think doesn't have compression, deduplication is there. So can RoboCopy data from compressed to uncompressed?
Thank you.