We are building an iOS app with Parse.com, but still can\'t figure out the right way to backup data efficiently.
As a premise, we have and will have a LOT of data store
I had the same issue of backing up parse server data. As parse server is using mongodb that is why backing up data is not an issue I have just done a simple thing. downloaded the mongodb backup from the server. And then restored it using
mongorestore /path-to-mongodump
(extracted files)
As parse has been turned to open source.Therefore we can adopt this technique.