Tim Vaillancourt
Tim Vaillancourt
Hi @snake007v. No immediate ideas, could you upload a full debug/--verbose log? Also --version output is useful (git commit/branch). You may want to find/replace any hostnames you don't want on...
Thanks @Wiston999, Forgive my lack of AWS S3 knowledge, are you attempting to upload to a bucket that does not require credentials for uploading? I assumed that the S3 API...
Thanks @Wiston999, I think that makes sense. As making the access+secret key optional would create a few other side-effects/problems would it be acceptable to implement a flag such as 'upload.s3.useIAMRoles:...
Thanks @acheccuc, Our goal was to make the tool as impact-proof as possible by avoiding the Primary at all costs, however I think it's reasonable to add an override option...
@dbmurphy recent mongodump DOES support read preference tags and mongodb_consistent_backup supports using tags since 1.2.0: https://github.com/Percona-Lab/mongodb_consistent_backup/pull/219. The only missing piece for this issue is we don't allow a primary to...
Correct, it's a pretty simple change that mostly involves calling this method with 'primary': https://github.com/Percona-Lab/mongodb_consistent_backup/blob/master/mongodb_consistent_backup/Backup/Mongodump/MongodumpThread.py#L72-L76 And skipping most or all of the .find_secondary() work in Replication/Replset.py. This functionality will require...
Hello @patricklarochelle, This sounds related to issues people are seeing with non-replset-based Config Servers (SCCC mode) in 3.2 and older. There is an issue here to re-test the code with...
Hi @ya-kostik. All databases/collections are backed up by this tool, by design. You're able to restore only a specific database/collection using the mongorestore '--db=' and '--collection=' flags.
Hi @ya-kostik I would say backing up a single database is a feature request, not a bug.
Hi @islue, I've been working on a fix for this same issue. This will be in the 1.0.4 release. I will be moving the 'last_ts' stop position (that the threads...