-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Need to ignore new tables to Migration Tool map.xml #27
Comments
@fabrice-dresscodes I don't know much about the tool, but judging by the description, it's a migration from M1 to M2. I don't understand how a migration from M1 is related to an exporter extension that is installed additionally to M2. |
Hi @duhon Yes it's related to module data-migration-tool. But commerce-data-export module is a core module right ? So it should be compatible with the data-migration-tool. Or do you suggest I need to move that issue to https://github.com/magento/data-migration-tool/issues ? |
@fabrice-dresscodes I believe this issue should be created in the https://github.com/magento/data-migration-tool/ repository because this repository does not contain the modules that include the tables you mentioned, and this modules are not installed by default. The tables you mentioned come with the Payment Services. I see that they depend on one of the modules from this repository, but your issue cannot be resolved here. |
Preconditions (*)
Steps to reproduce (*)
php8.2 bin/magento migrate:data app/code/XXXX/Migration/etc/opensource-to-opensource/1.7.0.2/config.xml -r
Expected result (*)
Destination documents are not mapped : XXXX should be empty
Actual result (*)
Destination documents are not mapped: sales_data_exporter_order_statuses,sales_data_exporter_orders,sales_order_data_exporter_cl,sales_order_status_data_exporter_cl,store_data_exporter_cl
You should add to the migration tool / map.xml :
....
<destination> <document_rules> <!-- Module data-store-exporter--> <ignore> <document>stores_data_exporter</document> </ignore> <ignore> <document>store_data_exporter_cl</document> </ignore> <ignore> <document>sales_order_status_data_exporter_cl</document> </ignore> <ignore> <document>sales_data_exporter_orders</document> </ignore> <ignore> <document>sales_data_exporter_order_statuses</document> </ignore> <ignore> <document>sales_order_data_exporter_cl</document> </ignore> <ignore> <document>data_exporter_uuid</document> </ignore> <ignore> <document>payment_services_order_data_production_submitted_hash</document> </ignore> <ignore> <document>payment_services_order_data_sandbox_submitted_hash</document> </ignore> <ignore> <document>payment_services_order_status_data_prod_submitted_hash</document> </ignore> <ignore> <document>payment_services_order_status_data_sandbox_submitted_hash</document> </ignore> <ignore> <document>payment_services_store_data_production_submitted_hash</document> </ignore> <ignore> <document>payment_services_store_data_sandbox_submitted_hash</document> </ignore>
....
The text was updated successfully, but these errors were encountered: