The source database has 6 unquoted collection names after an mlcp db-to-db copy the target database has replica collection names quoted and unquoted versions. When I restore the source db's backup onto the target db the latter has only the expected 6 unquoted collection names. The target database is cleared prior to the mlcp task and checked as empty before starting the mlcp run. The script I used seems fairly unremarkable:
bash mlcp.sh copy -mode local -input_host localhost -input_port 8000
-input_database <source-db> -input_username admin -input_password admin
-output_host <target-svr> -output_port 8000 -output_database <target-db>
-output_username <target-uname> -output_password <target-pwd>
--thread_count 4
Any ideas?