the great consolidation: entertainment weekly … › sites › default › files... · first...

47
THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY MIGRATION CASE STUDY JON PECK, MATT GRILL, PRESTON SO Slides: http://goo.gl/qJi8Kl

Upload: others

Post on 28-Jun-2020

1 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

THE GREAT CONSOLIDATION:ENTERTAINMENT WEEKLYMIGRATION CASE STUDYJON PECK, MATT GRILL, PRESTON SO

S l i d e s : h t t p : / / g o o . g l / q J i 8 K l

Page 2: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

WHO ARE WE?

Jon Peck - Matt Grill - Preston So -

drupal.org/u/fluxsaucedrupal.org/u/drpal

drupal.org/u/prestonso

Page 3: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PROJECTOVERVIEW

WHAT   D I D  WE   DO   &  WHO   D I D   I T ?Jon

Page 4: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

ENTERTAINMENTWEEKLY

Entertainment newsmagazine40th largest in the USew.com serves 13.7million consumersper week

Front page of EW.com

Page 5: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

MIGRATIONSCOPE

WORDPRESS10 blogs51,616 terms101,581 posts90,435 images

VIGNETTE V6117,326 articles201,986 images97,611 terms4,924 galleries

Page 6: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DEVELOPMENTTEAMS

Four Kitchens - 3 to 6 developersTime Inc. - 1 to 4 developersZoom, HipChat for regular communicationVideo really helpsGitHub Selfies - improved moralegoo.gl/KrtRur

Page 7: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

TIMELINE

First commit: April 29th, 2014Launch: January 29th, 201517 sprints

Page 8: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DELEGATION OFRESPONSIBILITIE

SFOURKITCHENS

TIME INC.

Page 9: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

Project ManagementData structuresMigrationImplement design,advertising

Product OwnerDesignWorkflowInfrastructure, buildprocess

PROCESSS T ANDARDS   A ND   DOCUMEN T A T I ON

Preston

Page 10: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DEFINITION OFREADINESS ANDCOMPLETION

Stakeholders: Context necessary for developmentDevelopers: Reviews, PO acceptance, demo, docsEvolving framework

Page 11: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

CODE AND STYLESTANDARDSALGORITHMICALLY

ENFORCED with Drupal rules from

syntax and errors code style

settings

PHP_CodeSniffer coderjshintjscsEditorConfig

Page 12: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

COMMIT ANDPULL REQUESTWORKFLOW

Descriptive commit messagesRobust testing instructionsPull request labels

Page 13: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PEER CODEREVIEWS

CODE REVIEW: DOES IT...Pass code and style standards?Accomplish the task gracefully?Perform at an optimal level?

Page 14: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PEER CODEREVIEWS

FUNCTIONAL REVIEW:DOES IT...

Fulfill the intent of the story?Use best practices?Avoid technical debt?

Page 15: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DEVELOPMENTENVIRONMENTS

Documented project-specific processGreatly reduced on-boarding timeProvided detailed feedback

Page 16: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

BRANCHINGSTANDARD

Reduces clutter, helps manage releasesImproves communication, navigationsprint-XX (kept for one sprint)PROJECT-YY (deleted after merge)Tags added when deleting sprint branch

Page 17: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

FRONT­ENDT HEM I NG ,   P E R FORMANCE   A ND

ADVER T I S I NGMatt

Page 18: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

AURORA, MOBILEFIRST THEMING

Separate themes hard requirementEdge device detection set cookietheme_key switched theme using cookieUsed Aurora as base themeHTML5, Sass & CompassMobile theme is sub-theme of AuroraDesktop is a sub-theme of Mobile

Page 19: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

GULP TASKMANAGEMENT

Compiles SassRuns JavaScriptcheckersWatches for changes

Page 20: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

JAVASCRIPTGLOBAL SCOPING

Created global JSobject for all EWfunctionsCentralized point ofentryEasy access

Page 21: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

ATOMICJAVASCRIPT

FUNCTIONALITY

Page 22: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

Break relatedfunctions intoindividual filesOnly load what’sneededImproves front-endperformance

PRE­PROCESSING

Page 23: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

Node template data built in pre-processingClean & reusableHelper and abstractions

Page 24: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

GLOBALMETADATAOBJECT

Useful for integrations requiring metadataAvoids repetitionFacilitates data collection by crawlers

Page 25: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

BEACONPERFORMANCE

Delay loading of beacons (non-blocking/defer)Use defer for injecting JS tags

Page 26: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

ADPERFORMANCE

No ad specific logic in templatesData attributes contain relevant valuesAvoids inline JSAds process and render in footer (after page load)

Page 27: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

EDITORIAL UI &WORKFLOW

Preston

Page 28: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PACKAGES ANDCHANNELS

Automatic dynamic contentEditors define rules for selectionOptional manual curation

Page 29: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

CUSTOMCONTENT TYPES

Used existing TI features to beginRounds of PO, editor feedbackUsability key to adoption

Page 30: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DYNAMIC ENTITYREFERENCES

Many aggregate viewsEditorial control of views, but with overridesCustom module that "fills in" empty parts of aview based on contextView lists 15, editor defines 5, DER populatesremaining

Page 31: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

DYNAMIC ERCHALLENGES

Modular, extensible, reusableAccurate dynamically curated nodesHigh performanceEditorial expectations for cachingState Machine integration

Page 32: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

CONTENTMIGRATIONS

WORDPRESS ,   V I G N E T T E   T O   D RUPA LJon

Page 33: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

WORDPRESSCHALLENGES

10 different blogs, structures, taxonomiesInvalid markupCustom shortcodes, filters

Page 34: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

WORDPRESS_MIGRATE NOT ENOUGH...

BUT STILL USEFUL!Extended classesHelped normalize WXR structure (really just XML)Focus on custom logic

Page 35: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

WORDPRESSPRE­PROCESSING

Stripped commentsTransformed identifiersSeparated authors, images, tags

Page 36: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

WORDPRESSSHORTCODES,

FILTERSImplemented subset of shortcodes in DrupalMost not migratedRendered as HTML in pre-processingUsed WordPress libraries, existing codeFaked WordPress bootstrap to execute natively

Page 37: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

MAPPINGWORDPRESS

TAGS ON IMPORTSpecific vocabulariesNew content types (People, Creative Works)CSV Spreadsheet used for defining rules

Page 38: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

EXPORTING FROMVIGNETTE

Rendered as XML filesMost procs were rendered as HTMLTransformed overloaded taxonomies to content

Page 39: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

IMPROVINGMIGRATION

PERFORMANCEValidate all XML before ingestionEliminate all PHP errors, warningsAvoid redundant migrationsUse cache_counts

Page 40: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

REDUCINGMIGRATIONOVERHEAD

Disabled solr, pathauto, metatag, othersduring migrationIndexing lookup tablesRan migrations in parallelEnsure HW resources are sufficient

Page 41: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

REDIRECTSTRATEGYMinimize Drupal performing redirectsRedirect farm (rules, 1:1 redirects)DNS changesRedirects from migrated servers

Page 42: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PERFORMANCEAND CACHING

Matt

Page 43: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

FRONTENDPERFORMANCE

CSS is Sass and Compass optimizedTargeted - only load needed CSSJavaScript is linted, strict standardsJS in the footer (non-blocking)

Page 44: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

FRONTENDCACHINGSTRATEGYEditorial 1 minute publish to liveEnsure cacheable headers are setShorter TTL on Akamai than VarnishSend purges on publishing

Page 45: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

BACKENDPERFORMANCE

Eliminate PHP errorsCache, EXPLAIN custom queriesMinimize unnecessary overheadModule countBenchmarking

Page 46: THE GREAT CONSOLIDATION: ENTERTAINMENT WEEKLY … › sites › default › files... · FIRST THEMING Separate themes hard requirement Edge device detection set cookie theme_key switched

PERFORMANCETESTING

Load test production with migrated dataBlitz.io and custom toolingNew Relic for introspectionExercised different content types, exceeded TTLsWebPageTest.org