How migration works
This document uses the following terminology to discuss the Data Migration Tool:
- Step: A unique migration task that must be executed in a prescribed order
- Map: A set of rules that describe connections between Magento 1.x and Magento 2.0 data structures
- Mode: Represented by a separate Data Migration Tool command, defines the basic mode of operation as:
- Settings: Migrates the system configuration and website-related settings
- Data: Migrates database assets in bulk
- Delta: Migrates incremental changes (for example, orders and inventory)
This guide provides information about migration using Data Migration Tool that can transfer and adapt data from Magento 1 to Magento 2 stores. The migration in overall is split into three phase (or 鈥渕odes鈥). Migration of settings, migration of data and migration of delta. Each mode splits into steps. Every step responsible for transferring some particular data. (e.g. URL Rewrite step, EAV step, Settings step 鈥) At the beginning, when is run, step checks tables structure of Magento 1 and Magento 2 for their consistency. Then the actual data is transferred to Magento 2 and in the end this data is checked to ensure that everything was transferred properly.
This section previews your migration experience by providing a high-level overview of the Data Migration Tool.
Conceptual overview
There are many differences between Magento 1 and Magento 2 in the structure and format of data that is stored in database. And each version of Magento 1, for example 1.8.0.0 or 1.9.0.0, has its own unique changes in data structure. The Data Migration Tool understands all these changes and can properly transform it for usage in Magento 2 store. Most of these differences are declared in Map files. Using the Map file a Step will know that, for example, a table from Magento 1 was renamed in Magento 2 and will be able to transfer data properly to destination table. In the case where there are no differences in data structure or data format the Data Migration Tool will transfer data as is to the Magento 2 database, including data from tables created by extensions. When differences are not declared in Map files then the Data Migration Tool will not start migration process and will display an error.
Mapping files are discussed in more detail in Data Migration Tool Internal Specification.
Find us on