We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DatabaseRewrites
The Config suggests a top level option in the .json file passed into the ghostferry-copydb process on initialization:
.json
ghostferry-copydb
ghostferry/config.go
Lines 355 to 361 in 5f71469
However, this is incorrect. This option is never accessed. The copydb process expects a nested option inside a top level Database key:
Database
ghostferry/copydb/config.go
Lines 24 to 27 in 5f71469
A successful config file using this option should look like
# Good { "Source": { ... }, "Target": { ... }, "Databases": { # ... "Rewrites": { "old_schema_name": "new_target_schema_name" } }, "Tables": { ... }, # Other top level options }
The documentation + the /config.go file suggest
/config.go
# Bad { "Source": { ... }, "Target": { ... }, "Databases": { ... }, "Tables": { ... }, "DatabaseRewrites: { "old_schema_name": "new_target_schema_name" }, # Other top level options }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Config suggests a top level option in the
.json
file passed into theghostferry-copydb
process on initialization:ghostferry/config.go
Lines 355 to 361 in 5f71469
However, this is incorrect. This option is never accessed. The copydb process expects a nested option inside a top level
Database
key:ghostferry/copydb/config.go
Lines 24 to 27 in 5f71469
A successful config file using this option should look like
The documentation + the
/config.go
file suggestThe text was updated successfully, but these errors were encountered: