data migration to drupal using the migrate module

Post on 10-May-2015

2.118 Views

Category:

Software

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Migration is the idea of moving data from A to B (and often, in the middle you transform this data). This presentation focus on the use of Drupal Migrate module. I recommend to use Migrate module for a complex migration. When you have either a complex source or destination. Migrate module is very flexible, powerful and well documented. Summary : - Introduction to data migration - Understanding the migrate module - Organise your Data migration with Migrate - Migrate in Drupal 8 Presentation for Drupalcamp Kyoto, Japan, in April 2014.

TRANSCRIPT

Data Migration with Drupal using Migrate

Drupal を使ったデータ移行について

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.12th April 2014 - Luc Bézier, @Luukyb

Drupalcamp Kyoto, Japan

https://www.flickr.com/photos/lifes26/4509331619/

Who am I

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Who am I

Freelance web, exclusively Drupal projects since ~ 4 years.

I moved to Cebu City, Philippines ~ 1 year.

Twitter @Luukybluc@webizat.com

Luukyb on drupal.org

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Who am I

Contributed to several large data migrationto drupal using migrate module.

Oracle to drupal :BBC Good Food

UK public sector organisation

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

http://www.flickr.com/photos/larahsphotography/2795859728/

1. Introduction to data migration2. Understanding the migrate module

3. Organise your Data migration with Migrate4. Migrate in Drupal 8

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Data migration

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Data migration

Moving data from A to B

(and often, in the middle you transform the data.)

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Data migration

Simple migration?Feeds module

Data mapping using UI.drupal.org/project/feeds

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Data migration

Use migrate module for a complex migration.

Complex source or destination.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Data migration

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/kieranlane/6635502419/

Data migration

Using the migrate module can require code, coffee

and patience.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/kieranlane/6635502419/

Data migration

Good news:Migrate module is very flexible, powerful and well documented.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Drupal module

Install and enable like any other contrib module

drupal.org/project/migrate

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Created by Mike Ryan.drupal.org/user/4420

Senior Technical Consultantat Acquia

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

“framework for migrating content into Drupal from other

sources”

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

What’s inside ?- OOP Architecture

- An API- Some drush commands

- Migrate UI

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Built-in support of core items (Nodes, Users, Files, Taxonomy

and comments)

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Built-in support for PDO, XML, CSV, JSON, and native MSSQL

and Oracle API sources

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

You can extend all sources, destinations.

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Migration:- 100% native drupal

- iterative

Introduction to Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Related modules:- Drupal-to-Drupal data migration (migrate_d2d)

- WordPress Migrate- TYPO3_migrate

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Your migration classes extends the

abstract class Migration

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Your source.

$this->source = new MigrateSourceSQL($query);

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Your destination.

$this->destination = new MigrateDestinationNode(’article');

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Your mapping.

$this->addFieldMapping('field_summary', 'summary');

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Transform your data.

$this->addFieldMapping('field_summary', 'summary’)

->callbacks(array($this, ’summaryFormat'));

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Extra transformation and processing can be done using

methods like:function prepareRow($row)

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Some cool features !Source dependency definition.

$this->addFieldMapping('field_image', ’imagepath') ->sourceMigration(’MediaImages');

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Easy to rollback the data.When you run a migration,

migrate module stores the keys.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

If you import into a contributed module: 2 cases.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

First case, my contrib module does not support migrate.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Example: Media module.

Migrating content for the media module requires migrate_extras.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Migrate extras module implements extra support.

drupal.org/project/migrate_extras

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Module maintainers are now recommended to implement

migration directly in the modules.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

So second case, my contrib module implements migrate.

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Example: field collection.

Comes with a file dedicated to migrate:

field_collection.migrate.inc

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Use drush !

Limit the number of items to import,Rollback the data,

Audit your migration, …

Understanding Migrate module

http://www.flickr.com/photos/zigazou76/9104028602

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

Organise your Data migration

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Organise your Data migration

Study the source data,keep track of the changes.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Organise your Data migration

Use a separate migration environment.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Organise your Data migration

Use a script to build this environment from scratch.

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Organise your Data migration

Install your site with a profile$ drush si profileMigrate the data

$ drush mi MyMigration

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/usace_albuquerque/5547589951/

Migrate to D8

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

Migrate to D8

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

Drupal 8 will integrate a Migration API to migrate your site from

Drupal 6 and Drupal 7 to Drupal 8.

Migrate to D8

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

This API will be based on migrate module.(currently still in progress)

Migrate to D8

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

Migration API in D8:drupal.org/node/2127611

Migration modules list :drupal.org/documentation/migrate

Questions?

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

Coming camps in PHL

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

Drupalcamp Manila : 26th April

Drupalcamp Cebu : October 2014 (TBC)

Thank you !

Data Migration with Drupal using Migrate, Drupalcamp Kyoto.Luc Bézier, @Luukyb

https://www.flickr.com/photos/michaeljohn/306759922/

ありがとうluc@webizat.com

@luukyb

top related