SlideShare una empresa de Scribd logo
1 de 65
Drupal + WBR
                             How Warner Bros. Records uses Drupal




Tuesday, February 10, 2009
Who am I?
                         Shaun Haber
                         shaun.haber@wbr.com

                         Lead architect, developer, administrator
                         for Warner Bros. Records




Tuesday, February 10, 2009
My short talk
                    1. Background of Drupal at WBR

                    2. Environment setup

                    3. Development workflow

                    4. Site implementation




Tuesday, February 10, 2009
Tuesday, February 10, 2009
Warner Music Group




Tuesday, February 10, 2009
Tuesday, February 10, 2009
WBR Tech

                    • In-house Tech team
                    • “Start-up” mentality
                    • Fast-paced, hectic, and fun!
                    • We use Drupal... religiously

Tuesday, February 10, 2009
100+ Drupal Sites
                                 Since October 2006




Tuesday, February 10, 2009
Tuesday, February 10, 2009
My short talk
                    1. Background of Drupal at WBR

                    2. Environment setup

                    3. Development workflow

                    4. Site implementation




Tuesday, February 10, 2009
Environment Setup
                    • DNS                      • Serving external pages
                    • Apache mod_vhost_alias   • Using a CDN
                    • Directory structure      • Cron
                    • Shared code-base
                    • Symbolic links
                    • Monikers


Tuesday, February 10, 2009
DNS




Tuesday, February 10, 2009
Apache mod_vhost_alias
                             Dynamically created virtual hosts




Tuesday, February 10, 2009
Directory Structure
                    •        Directory of web roots

                    •        Directory of Drupal cores

                    •        Directory of contributed (and custom) modules

                    •        Directory of Drupal sites

                    •        All pieced together by symbolic links!




Tuesday, February 10, 2009
Web roots directory




Tuesday, February 10, 2009
Drupal env directory




Tuesday, February 10, 2009
Drupal env directory




Tuesday, February 10, 2009
Drupal cores directory




Tuesday, February 10, 2009
Drupal cores directory




Tuesday, February 10, 2009
Drupal sites directory




Tuesday, February 10, 2009
Drupal sites directory




Tuesday, February 10, 2009
Drupal sites directory




                                     monikers


Tuesday, February 10, 2009
Drupal modules directory




Tuesday, February 10, 2009
Drupal modules directory




Tuesday, February 10, 2009
CCK module directory




Tuesday, February 10, 2009
CCK module directory




Tuesday, February 10, 2009
sites/all/modules directory




Tuesday, February 10, 2009
sites/[moniker]/modules directory




Tuesday, February 10, 2009
Serving external pages?
                    ★ http://theveronicas.com/foo

                    ★ http://disturbed1.com/foo


                    •        Problem: These should be two separate pages.
                             How to implement using a shared code-base?

                    •        Solution: Don’t place site-exclusive files in Drupal root.
                             Instead, place each file in a dedicated location and tell
                             Apache to check there first.




Tuesday, February 10, 2009
Use mod_rewrite




Tuesday, February 10, 2009
Site directory

                                      Virtual Drupal root




Tuesday, February 10, 2009
Using a CDN
                    •        Use RewriteRules

                    •        Symlink to pickup zone




Tuesday, February 10, 2009
RewriteRule example




Tuesday, February 10, 2009
Use a symlink for files




                                 Read by Akamai’s servers




Tuesday, February 10, 2009
Cron
                    •        Run cron as a command-line PHP script.

                    •        Input list of sites and run cron for each site.




Tuesday, February 10, 2009
Environment Setup
                                   Recap
                    • DNS                      • Serving external pages
                    • Apache mod_vhost_alias   • Using a CDN
                    • Directory structure      • Cron
                    • Shared code-base
                    • Symbolic links
                    • Monikers


Tuesday, February 10, 2009
My short talk
                    1. Background of Drupal at WBR

                    2. Environment setup

                    3. Development workflow

                    4. Site implementation




Tuesday, February 10, 2009
Development Workflow
                    •        Subversion repository

                    •        Provisioning a dev site

                    •        Development cycle

                    •        Deploying a site

                    •        Development on a production site

                    •        Database synchronization




Tuesday, February 10, 2009
Subversion Repository




Tuesday, February 10, 2009
Provisioning a Dev site
                    •        Name the site (moniker!).

                    •        Create vhost.

                    •        SVN Copy skel site folder.

                    •        Create symlink(s) in drupal sites folder.

                    •        Create database.

                    •        Populate settings.php.

                    •        Run install.php.

Tuesday, February 10, 2009
Development Cycle
                                               SVN


                             update
                                                update
                                                         update
                                      commit


                      Local                    Dev            Prod




Tuesday, February 10, 2009
Remote SVN Update




Tuesday, February 10, 2009
Deploying a site

                              •   Code

                              •   Database

                              •   Files

                              •   Configs




Tuesday, February 10, 2009
Code
                    •        Subversion checkout




                                                   checkout
                        SVN                                   Prod




Tuesday, February 10, 2009
Database
                    •        Mysqldump + gzip + scp

                    •        Search/Replace dev environment strings

                             •   UPDATE files SET filepath = REPLACE(filepath,
                                 ‘mutemath.wbrdev.com’, ‘mutemath’

                             •   UPDATE system SET filename = REPLACE(filename,
                                 ‘mutemath.wbrdev.com’, ‘mutemath’


                    •        Create and populate settings.php file




Tuesday, February 10, 2009
Files
                    •        Tar + gzip + scp

                    •        RewriteRules for CDN




Tuesday, February 10, 2009
Configs
                    •        Change file paths

                    •        Turn on caching

                    •        Turn off error log to display

                    •        Disable devel and watchdog modules

                    •        Etc.




Tuesday, February 10, 2009
Development on a Production site

                    •        Code already handled by SVN

                    •        Take snapshot of production DB, copy to dev

                    •        Copy files over to dev

                    •        Change paths, configs

                    •        Obfuscate email addresses

                    •        Take note of date and sequences table (D5 only)




Tuesday, February 10, 2009
Database Synchronization
                    1. Take dev site down

                    2. Shift sequenced IDs on Dev

                    3. Take prod site down

                    4. Merge content from Prod to Dev

                    5. QA “new” dev site

                    6. Copy dev site to prod site

                    7. Bring “new” prod site live

Tuesday, February 10, 2009
3
                                 2
                             1

Tuesday, February 10, 2009
3       3
                                 2       2
                             1       1

Tuesday, February 10, 2009
6
                             5           5
                             4       4
                             3       3
                                 2       2
                             1       1

Tuesday, February 10, 2009
11
                             10

                                          6
                                          5
                                      4
                              3       3
                                  2       2
                              1       1

Tuesday, February 10, 2009
11
                             10

                                  6       6
                                  5       5
                              4       4
                              3       3
                                  2       2
                              1       1

Tuesday, February 10, 2009
11
                             10
                                 6       6
                              5          5
                             4       4
                             3       3
                                 2       2
                             1       1

Tuesday, February 10, 2009
11
                             10
                                 6       6
                              5          5
                             4       4
                             3       3
                             2a      2a
                             1       1

Tuesday, February 10, 2009
11
                             10
                                 6       6
                              5          5
                             4       4
                             3       3
                             2a      2a
                             1       1

Tuesday, February 10, 2009
Development Workflow
                                    Recap
                    •        Subversion repository

                    •        Provisioning a dev site

                    •        Development cycle

                    •        Deploying a site

                    •        Development on a production site

                    •        Database synchronization




Tuesday, February 10, 2009
My short talk
                    1. Background of Drupal at WBR

                    2. Environment setup

                    3. Development workflow

                    4. Site implementation




Tuesday, February 10, 2009
Demo



Tuesday, February 10, 2009
Asyncronous Data
                                  Processing
                    •        Pull model

                    •        Push model




Tuesday, February 10, 2009
Pull model
                    •        Create a site node type

                             •   Stores db info, document root, URL, 3rd-party API
                                 keys, etc.

                    •        Create acquisition layer

                    •        Aggregate data

                    •        Generate views




Tuesday, February 10, 2009
01Detail Module Overview

                        Shaun Haber
                        Fri Jan 16 2009
                                                                 Report      Filtered View




                                                                                Chart

                                                                Aggregator




                                 Vendor API         Bootstrap    Query            Env        Master User
                                  (Service)        (XML-RPC)    (MySQL)          (OS)          (API)




                                                                   Site                         List




Tuesday, February 10, 2009
Push model
                    •        Setup site with actions and triggers.

                    •        Setup a message queue system (Spread Toolkit).

                    •        Asynchronously send data via Spread daemon for further
                             processing.

                    •        XML-RPC callback to the site when data processing
                             completes.




Tuesday, February 10, 2009
Questions?
                         Shaun Haber
                         shaun.haber@wbr.com

                         Lead architect, developer, administrator
                         for Warner Bros. Records




Tuesday, February 10, 2009

Más contenido relacionado

Destacado

Destacado (6)

BADCamp 2008 DB Sync
BADCamp 2008 DB SyncBADCamp 2008 DB Sync
BADCamp 2008 DB Sync
 
BADCamp 2008 Core Crazy
BADCamp 2008 Core CrazyBADCamp 2008 Core Crazy
BADCamp 2008 Core Crazy
 
PSFK Future of Work Report
PSFK Future of Work ReportPSFK Future of Work Report
PSFK Future of Work Report
 
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika AldabaLightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
Lightning Talk #9: How UX and Data Storytelling Can Shape Policy by Mika Aldaba
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting Personal
 

Similar a Drupal + WBR

Running The Show Configuration Management With Chef Presentation
Running The Show  Configuration Management With Chef PresentationRunning The Show  Configuration Management With Chef Presentation
Running The Show Configuration Management With Chef Presentation
railsconf
 
Firefox 3.5 and Beyond, At Portland Web Innovators
Firefox 3.5 and Beyond, At Portland Web InnovatorsFirefox 3.5 and Beyond, At Portland Web Innovators
Firefox 3.5 and Beyond, At Portland Web Innovators
Dietrich Ayala
 
symfony: An Open-Source Framework for Professionals (PHP Day 2008)
symfony: An Open-Source Framework for Professionals (PHP Day 2008)symfony: An Open-Source Framework for Professionals (PHP Day 2008)
symfony: An Open-Source Framework for Professionals (PHP Day 2008)
Fabien Potencier
 

Similar a Drupal + WBR (20)

The Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to AdobeThe Twitter API: A Presentation to Adobe
The Twitter API: A Presentation to Adobe
 
Bay Area Drupal Camp Efficiency
Bay Area Drupal Camp EfficiencyBay Area Drupal Camp Efficiency
Bay Area Drupal Camp Efficiency
 
Vagrant at LA Ruby
Vagrant at LA RubyVagrant at LA Ruby
Vagrant at LA Ruby
 
Running The Show Configuration Management With Chef Presentation
Running The Show  Configuration Management With Chef PresentationRunning The Show  Configuration Management With Chef Presentation
Running The Show Configuration Management With Chef Presentation
 
Open Source WCM and Standards
Open Source WCM and StandardsOpen Source WCM and Standards
Open Source WCM and Standards
 
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
Puppet Camp Sydney Feb 2014 - A Build Engineering Team’s Journey of Infrastru...
 
Firefox 3.5 and Beyond, At Portland Web Innovators
Firefox 3.5 and Beyond, At Portland Web InnovatorsFirefox 3.5 and Beyond, At Portland Web Innovators
Firefox 3.5 and Beyond, At Portland Web Innovators
 
MacRuby For Ruby Developers
MacRuby For Ruby DevelopersMacRuby For Ruby Developers
MacRuby For Ruby Developers
 
No Really, It's All About You
No Really, It's All About YouNo Really, It's All About You
No Really, It's All About You
 
Intro To Git
Intro To GitIntro To Git
Intro To Git
 
Drupal CDN integration: easier, more flexible and faster!
Drupal CDN integration: easier, more flexible and faster!Drupal CDN integration: easier, more flexible and faster!
Drupal CDN integration: easier, more flexible and faster!
 
Best Practices in Migrating to MySQL - Part 1
Best Practices in Migrating to MySQL - Part 1Best Practices in Migrating to MySQL - Part 1
Best Practices in Migrating to MySQL - Part 1
 
Philly Spring UG Roo Overview
Philly Spring UG Roo OverviewPhilly Spring UG Roo Overview
Philly Spring UG Roo Overview
 
Ruby on Rails
Ruby on RailsRuby on Rails
Ruby on Rails
 
The Docker "Gauntlet" - Introduction, Ecosystem, Deployment, Orchestration
The Docker "Gauntlet" - Introduction, Ecosystem, Deployment, OrchestrationThe Docker "Gauntlet" - Introduction, Ecosystem, Deployment, Orchestration
The Docker "Gauntlet" - Introduction, Ecosystem, Deployment, Orchestration
 
Kuby, ActiveDeployment for Rails Apps
Kuby, ActiveDeployment for Rails AppsKuby, ActiveDeployment for Rails Apps
Kuby, ActiveDeployment for Rails Apps
 
symfony: An Open-Source Framework for Professionals (PHP Day 2008)
symfony: An Open-Source Framework for Professionals (PHP Day 2008)symfony: An Open-Source Framework for Professionals (PHP Day 2008)
symfony: An Open-Source Framework for Professionals (PHP Day 2008)
 
Off the Treadmill: Building a Drupal Platform for Your Organization
Off the Treadmill: Building a Drupal Platform for Your OrganizationOff the Treadmill: Building a Drupal Platform for Your Organization
Off the Treadmill: Building a Drupal Platform for Your Organization
 
HTML5 and Google Chrome - DevFest09
HTML5 and Google Chrome - DevFest09HTML5 and Google Chrome - DevFest09
HTML5 and Google Chrome - DevFest09
 
Deployments... from dreaded to delightful.
Deployments... from dreaded to delightful.Deployments... from dreaded to delightful.
Deployments... from dreaded to delightful.
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 

Drupal + WBR

  • 1. Drupal + WBR How Warner Bros. Records uses Drupal Tuesday, February 10, 2009
  • 2. Who am I? Shaun Haber shaun.haber@wbr.com Lead architect, developer, administrator for Warner Bros. Records Tuesday, February 10, 2009
  • 3. My short talk 1. Background of Drupal at WBR 2. Environment setup 3. Development workflow 4. Site implementation Tuesday, February 10, 2009
  • 5. Warner Music Group Tuesday, February 10, 2009
  • 7. WBR Tech • In-house Tech team • “Start-up” mentality • Fast-paced, hectic, and fun! • We use Drupal... religiously Tuesday, February 10, 2009
  • 8. 100+ Drupal Sites Since October 2006 Tuesday, February 10, 2009
  • 10. My short talk 1. Background of Drupal at WBR 2. Environment setup 3. Development workflow 4. Site implementation Tuesday, February 10, 2009
  • 11. Environment Setup • DNS • Serving external pages • Apache mod_vhost_alias • Using a CDN • Directory structure • Cron • Shared code-base • Symbolic links • Monikers Tuesday, February 10, 2009
  • 13. Apache mod_vhost_alias Dynamically created virtual hosts Tuesday, February 10, 2009
  • 14. Directory Structure • Directory of web roots • Directory of Drupal cores • Directory of contributed (and custom) modules • Directory of Drupal sites • All pieced together by symbolic links! Tuesday, February 10, 2009
  • 15. Web roots directory Tuesday, February 10, 2009
  • 16. Drupal env directory Tuesday, February 10, 2009
  • 17. Drupal env directory Tuesday, February 10, 2009
  • 18. Drupal cores directory Tuesday, February 10, 2009
  • 19. Drupal cores directory Tuesday, February 10, 2009
  • 20. Drupal sites directory Tuesday, February 10, 2009
  • 21. Drupal sites directory Tuesday, February 10, 2009
  • 22. Drupal sites directory monikers Tuesday, February 10, 2009
  • 25. CCK module directory Tuesday, February 10, 2009
  • 26. CCK module directory Tuesday, February 10, 2009
  • 29. Serving external pages? ★ http://theveronicas.com/foo ★ http://disturbed1.com/foo • Problem: These should be two separate pages. How to implement using a shared code-base? • Solution: Don’t place site-exclusive files in Drupal root. Instead, place each file in a dedicated location and tell Apache to check there first. Tuesday, February 10, 2009
  • 31. Site directory Virtual Drupal root Tuesday, February 10, 2009
  • 32. Using a CDN • Use RewriteRules • Symlink to pickup zone Tuesday, February 10, 2009
  • 34. Use a symlink for files Read by Akamai’s servers Tuesday, February 10, 2009
  • 35. Cron • Run cron as a command-line PHP script. • Input list of sites and run cron for each site. Tuesday, February 10, 2009
  • 36. Environment Setup Recap • DNS • Serving external pages • Apache mod_vhost_alias • Using a CDN • Directory structure • Cron • Shared code-base • Symbolic links • Monikers Tuesday, February 10, 2009
  • 37. My short talk 1. Background of Drupal at WBR 2. Environment setup 3. Development workflow 4. Site implementation Tuesday, February 10, 2009
  • 38. Development Workflow • Subversion repository • Provisioning a dev site • Development cycle • Deploying a site • Development on a production site • Database synchronization Tuesday, February 10, 2009
  • 40. Provisioning a Dev site • Name the site (moniker!). • Create vhost. • SVN Copy skel site folder. • Create symlink(s) in drupal sites folder. • Create database. • Populate settings.php. • Run install.php. Tuesday, February 10, 2009
  • 41. Development Cycle SVN update update update commit Local Dev Prod Tuesday, February 10, 2009
  • 42. Remote SVN Update Tuesday, February 10, 2009
  • 43. Deploying a site • Code • Database • Files • Configs Tuesday, February 10, 2009
  • 44. Code • Subversion checkout checkout SVN Prod Tuesday, February 10, 2009
  • 45. Database • Mysqldump + gzip + scp • Search/Replace dev environment strings • UPDATE files SET filepath = REPLACE(filepath, ‘mutemath.wbrdev.com’, ‘mutemath’ • UPDATE system SET filename = REPLACE(filename, ‘mutemath.wbrdev.com’, ‘mutemath’ • Create and populate settings.php file Tuesday, February 10, 2009
  • 46. Files • Tar + gzip + scp • RewriteRules for CDN Tuesday, February 10, 2009
  • 47. Configs • Change file paths • Turn on caching • Turn off error log to display • Disable devel and watchdog modules • Etc. Tuesday, February 10, 2009
  • 48. Development on a Production site • Code already handled by SVN • Take snapshot of production DB, copy to dev • Copy files over to dev • Change paths, configs • Obfuscate email addresses • Take note of date and sequences table (D5 only) Tuesday, February 10, 2009
  • 49. Database Synchronization 1. Take dev site down 2. Shift sequenced IDs on Dev 3. Take prod site down 4. Merge content from Prod to Dev 5. QA “new” dev site 6. Copy dev site to prod site 7. Bring “new” prod site live Tuesday, February 10, 2009
  • 50. 3 2 1 Tuesday, February 10, 2009
  • 51. 3 3 2 2 1 1 Tuesday, February 10, 2009
  • 52. 6 5 5 4 4 3 3 2 2 1 1 Tuesday, February 10, 2009
  • 53. 11 10 6 5 4 3 3 2 2 1 1 Tuesday, February 10, 2009
  • 54. 11 10 6 6 5 5 4 4 3 3 2 2 1 1 Tuesday, February 10, 2009
  • 55. 11 10 6 6 5 5 4 4 3 3 2 2 1 1 Tuesday, February 10, 2009
  • 56. 11 10 6 6 5 5 4 4 3 3 2a 2a 1 1 Tuesday, February 10, 2009
  • 57. 11 10 6 6 5 5 4 4 3 3 2a 2a 1 1 Tuesday, February 10, 2009
  • 58. Development Workflow Recap • Subversion repository • Provisioning a dev site • Development cycle • Deploying a site • Development on a production site • Database synchronization Tuesday, February 10, 2009
  • 59. My short talk 1. Background of Drupal at WBR 2. Environment setup 3. Development workflow 4. Site implementation Tuesday, February 10, 2009
  • 61. Asyncronous Data Processing • Pull model • Push model Tuesday, February 10, 2009
  • 62. Pull model • Create a site node type • Stores db info, document root, URL, 3rd-party API keys, etc. • Create acquisition layer • Aggregate data • Generate views Tuesday, February 10, 2009
  • 63. 01Detail Module Overview Shaun Haber Fri Jan 16 2009 Report Filtered View Chart Aggregator Vendor API Bootstrap Query Env Master User (Service) (XML-RPC) (MySQL) (OS) (API) Site List Tuesday, February 10, 2009
  • 64. Push model • Setup site with actions and triggers. • Setup a message queue system (Spread Toolkit). • Asynchronously send data via Spread daemon for further processing. • XML-RPC callback to the site when data processing completes. Tuesday, February 10, 2009
  • 65. Questions? Shaun Haber shaun.haber@wbr.com Lead architect, developer, administrator for Warner Bros. Records Tuesday, February 10, 2009

Notas del editor