Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a small “toolbox” under migration/toolbox with scripts and docs to help customers perform extra checks during the Data Capture Request phase.
Changes:
- Added two
mongoshscripts to report collection sizes and index utilization across user DBs. - Added a Python limitations checker (online via URI or offline via getMongoData JSON) plus detailed usage documentation.
- Linked the new toolbox docs from
migration/README.md.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
| migration/toolbox/probIndexesComplete.js | New mongosh script to collect per-index stats (size/ops/type) across DBs |
| migration/toolbox/collectionSizes.js | New mongosh script to list collections and sizes per DB |
| migration/toolbox/mongosync_uniqueindex_limitation_checker.py | New Python CLI to detect the “unique vs non-unique same key pattern” limitation (online/offline) |
| migration/toolbox/README_limitations_checker.md | Usage/docs for the limitations checker script |
| migration/toolbox/README.md | Toolbox landing README + usage examples for the scripts |
| migration/README.md | Adds Toolbox entry under migration scripts |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add three scripts to facilitate sharing them with customers when extra checks are needed during the Data Capture Request phase.