Magento 2 migration tool without client attributes

0

I have a problem migrating the data from magento 1.7.xx to magento 2.1.x which is to ignore some attributes of the client such as the cedula, in the table eav_attribute this is the data that I want to ignore, (the following image is from the magento table 1.7)

The documentation shows how to ignore the columns in the map-customer-xml document in the following way

<ignore>
    <field>customer_entity.entity_type_id</field>
</ignore>

In map-eav.xml ignore columns in the same way

<ignore>                
    <field>catalog_eav_attribute.is_required_in_admin_store</field>
</ignore>

I have the migration tool version 2.1.5 In the vendor / magento / data-migration-tool / etc / ce-to-ce / directory these are the files that it shows for the configuration of the migration, in what I have searched I do not find how, or in which I can ignore the attributes that I need

thanks for your attention

    
asked by Daniel Rueda 23.03.2017 в 18:00
source

1 answer

0

To ignore the attributes of the client we use the file eav-attribute-groups.xml.dist create a copy

cp eav-attribute-groups.xml.dist eav-attribute-groups.xml

In the ignore node we place the attributes that we want, we have to be careful with the type of attribute that we put example

 <groups xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="../groups.xsd">
<group name="ignore">
   <attribute type="catalog_product">msrp_enabled</attribute>
     <!-- ignore attributes -->
   <attribute type="customer">cedula</attribute>
    <!--  ignore end -->
</group>
</groups>

if the type is the one ignores the one you want, otherwise it will not do anything or ignore it elsewhere With the edited document we passed the migration

    
answered by 24.03.2017 в 16:44