SlideShare ist ein Scribd-Unternehmen logo
1 von 95
Downloaden Sie, um offline zu lesen
Develop	
  &	
  deploy	
  using	
  hybrid	
  cloud	
  strategies




Thijs	
  Feryn
Evangelist
+32	
  (0)9	
  218	
  79	
  06
thijs@combellgroup.com
Very	
  excited	
  to	
  be	
  here	
  !
THIJS
TAZE
Evangelist
@ThijsFeryn
Please	
  
   rate	
  my	
  talk	
  on	
  
       Joind.in




https://joind.in/4951
What	
  is	
  Cloud?
“That’s	
  where	
  rain	
  
comes	
  from”
               Andrei	
  Zmievski
Cloud
    =
Internet
DefiniXon


  A	
  model	
  for	
  consumpXon	
  &	
  
 delivery	
  on	
  the	
  internet	
  where	
  
 flexibility	
  is	
  essenXal	
  &	
  can	
  be	
  
        guaranteed	
  through	
  
              abstracXon
Internet	
  as	
  a	
  uXlity
Translated	
  to	
  what	
  we	
  know	
  &	
  need
Always	
  available
Fast	
  (enough)
Scalability


        Up	
  &	
  down	
  vs	
  out	
  &	
  in
Focus	
  on	
  using,	
  do	
  what	
  you’re	
  good	
  at
Leave	
  the	
  rest	
  to	
  others
Higher	
  up	
  the	
  stack
Economic	
  advantages
Less	
  money
 Less	
  effort
  Less	
  risk
Less	
  worries
Hybrid	
  let’s	
  you	
  do	
  that
Hybrid	
  is	
  just	
  a	
  fancy	
  way	
  of	
  saying
Pick	
  the	
  pieces	
  of	
  the	
  puzzle	
  yourself
Amazon	
  web	
  services

 ✓CompuXng ✓Database
  –EC2       –RDS
  –ELB       –DynamoDB
  –Auto	
    –SimpleDB
   scaling   –ElasXcache
 ✓Storage    –SQS
  –S3       ✓CDN
  –EBS       –CloudFront
                 Self-­‐service	
  Iaas
Windows	
  Azure

               ✓CompuXng
               ✓Storage
                –Blob	
  storage
                –Table	
  storage
               ✓CDN
               ✓SQL	
  Azure
               ✓Data	
  sync
               ✓Service	
  Bus

                   Self-­‐service	
  Paas
Orchestra



            ✓CompuXng
            ✓Database
              –Memcached
              –MySQL	
  &	
  RDS
              –CouchDB
              –MongoDB
              –Redis
     PHP	
  Paas	
  on	
  top	
  of	
  AWS
Combell




Fully	
  customized	
  &	
  managed	
  soluXons
Easy	
  peasy,	
  right?
Single	
  point	
  of	
  failure
Shared	
  nothing
Nothing	
  is	
  local
Distributed	
  systems
Easy	
  to	
  deploy	
  &	
  manage?
How	
  do	
  you	
  
  deal	
  with
$_SESSIONS?
ReplicaXon
R/W	
  splimng
“Cloud	
  is	
  for	
  green	
  
field	
  projects”
                Maarten	
  Balliauw
Let’s	
  do	
  it	
  !
Infrastructure


 ✓Basics
  –Webservers
  –MySQL	
  servers
  –File	
  servers
 ✓AddiXonal	
  servers
  –Caching	
  servers
  –Reverse	
  proxy	
  servers
 ✓External	
  CDN
Single	
  
server	
  
setup
Single	
  server	
  setup


 ✓Developer
  –Everything	
  is	
  local
   •Files
   •Databases
 ✓Sysadmin
  –Sits	
  back,	
  drinks	
  some	
  coffee
Single	
  server	
  setup
                                                      What	
  
✓Amazon                                             about	
  the	
  
 –1	
  EC2	
  instance                               Cloud?
 –Local	
  MySQL	
  or	
  RDS	
  (as	
  a	
  service)
 –Local	
  files
✓Azure
 –Single	
  App	
  deployment
 –Include	
  PHP	
  &	
  MySQL	
  in	
  package	
  script
✓Orchestra
 –Single	
  App	
  deployment
 –Request	
  MySQL	
  database	
  or	
  RDS
Separate	
  
 MySQL
Separate	
  MySQL


 ✓Developer
  –Change	
  connecXonstring(s)
 ✓Sysadmin
  –Sets	
  up	
  separate	
  server
  –Tunes	
  for	
  MySQL
Separate	
  MySQL
                                             What	
  
✓Amazon                                    about	
  the	
  
 –Extra	
  EC2	
  instance	
  for	
  MySQL  Cloud?
 –RDS
✓Azure
 –MySQL	
  deployment	
  with	
  worker	
  role
 –Doesn’t	
  scale	
  well
 –Use	
  SQL	
  Azure	
  instead
✓Orchestra
 –By	
  default	
  separate
 –Create	
  separate	
  MySQL	
  database
 –RDS
MulXple	
  
MySQL’s
MulXple	
  MySQL’s

✓Developer
 –Read	
  write	
  splimng	
  in	
  code
 –Connect	
  to	
  loadbalanced	
  hostname
✓Sysadmin
 –Setup	
  servers
 –Configure	
  replicaXon
   •Master/master
   •Master/slave
 –Add	
  to	
  loadbalancing
MulXple	
  
   Use	
  mysqlnd_ms	
  for	
  R/W	
  
splimng	
  in	
  case	
  of	
  crappy	
  code


MySQL’s
{
	
  	
  	
  	
  "myapp":	
  {
	
  	
  	
  	
  	
  	
  	
  	
  "master":	
  {
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "write_group":	
  {
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "host":	
  "master.db.myapp.ext",
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "port":	
  "3306"
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  }                                                 mysqlnd_ms_plugin.ini
	
  	
  	
  	
  	
  	
  	
  	
  },
	
  	
  	
  	
  	
  	
  	
  	
  "slave":	
  {
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "read_group":	
  {
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "host":	
  "slave.db.myapp.ext",
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  "port":	
  "3306"
	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  	
  }
	
  	
  	
  	
  	
  	
  	
  	
  }
	
  	
  	
  	
  }
}
mysqlnd_ms.enable=1
mysqlnd_ms.ini_file=/path/to/mysqlnd_ms_plugin.ini


                                              php.ini
<?php
$mysqli = new mysqli("myapp", "username", "p
assword", "database");
$pdo = new PDO('mysql:host=myapp;dbname=data
base', 'username', 'password');
$mysql = mysql_connect("myapp", "username", 
"password");


                                 ConnecXon	
  
                                   string
MulXple	
  MySQL’s
                                                         What	
  
✓Amazon                                                about	
  the	
  
 –MulXple	
  EC2	
  instances	
                         Cloud?
  with	
  replicaXon	
  and	
  loadbalancing
 –RDS	
  with	
  read	
  replica
✓Azure
 –Include	
  PHP	
  &	
  MySQL	
  in	
  package	
  script
 –Doesn’t	
  scale
 –Use	
  SQL	
  Azure
✓Orchestra
 –RDS
 –Xeround
MulXple	
  
 web	
  
servers
MulXple	
  web	
  servers

✓Developer
 –MulXple	
  places	
  to	
  deploy
 –Where	
  are	
  my	
  staXc	
  assets?
 –Sessions?
✓Sysadmin
 –MulXple	
  servers	
  behind	
  loadbalancer
 –$_SESSION	
  clustering	
  via	
  Memcached	
  or	
  
  sXcky	
  sessions
 –Shared	
  storage
Memcached	
  session	
  handler

session.save_handler	
  =	
  memcached
session.save_path=	
  “mc1.myapp.ext:
11211,mc2.myapp.ext:11211”
                                php.ini
MulXple	
  Web	
  servers
                                                   What	
  
✓Amazon                                          about	
  the	
  
 –MulXple	
  EC2	
  instances	
                   Cloud?
 –Use	
  ELB	
  for	
  loadbalancing
 –AMI	
  for	
  easy	
  setup
 –Config	
  management	
  (puppet,	
  chef,	
  ...)
✓Azure
 –Out	
  of	
  the	
  box
 –Tuning	
  possible
✓Orchestra
 –Out	
  of	
  the	
  box
Offload	
  
 staXc	
  
  files
Offload	
  staXc	
  files

✓Developer
 –Sync	
  current	
  assets
 –Store	
  new	
  files	
  on	
  external	
  servers
 –Use	
  external	
  hostname	
  when	
  referencing	
  
  files
✓Sysadmin
 –Tune	
  external	
  servers	
  for	
  staXc	
  content
 –CDN,	
  perhaps?
Offload	
  staXc	
  files
                                                     What	
  
✓Amazon                                            about	
  the	
  
 –EC2	
  instances	
  for	
  storage	
  with	
      Cloud?
  clustered	
  file	
  system
 –S3	
  buckets
✓Azure
 –Blob	
  storage
When	
  
     the	
  
pressure	
  
       is	
  
      on
Auto	
  scaling	
  &	
  load	
  balancing
CDN	
  &	
  asset	
  offloading
Reverse	
  (caching)	
  proxy
Memcached
Adapt
 your
code
Storage
require_once	
  'Zend/Service/WindowsAzure/Storage/Blob.php';	
  
$storageClient	
  =	
  new	
  Zend_Service_WindowsAzure_Storage_Blob();
$result	
  =	
  $storageClient-­‐>putBlob(
'testcontainer',	
  'example.txt',	
  '/example.txt'
);	
  
echo	
  'Blob	
  name	
  is:	
  '	
  .	
  $result-­‐>Name;
                                                              Azure	
  
                                                          Blog	
  storage
require_once	
  'Zend/Service/Amazon/S3.php';	
  
$s3	
  =	
  new	
  Zend_Service_Amazon_S3($my_aws_key,	
  
$my_aws_secret_key);	
  
$s3-­‐>createBucket("my-­‐own-­‐bucket");	
  
$s3-­‐>putObject("my-­‐own-­‐bucket/myobject",	
  "somedata");
echo	
  $s3-­‐>getObject("my-­‐own-­‐bucket/myobject");
                                                                 Amazon	
  
                                                                   S3
<?php
$storage = Zend_Cloud_StorageService_Factory::getAdapter(
array(
    Zend_Cloud_StorageService_Factory::STORAGE_ADAPTER_KEY => 
'Zend_Cloud_StorageService_Adapter_S3',
    Zend_Cloud_StorageService_Adapter_S3::AWS_ACCESS_KEY   => 
$amazonKey,
    Zend_Cloud_StorageService_Adapter_S3::AWS_SECRET_KEY   => 
$amazonSecret,
));
$data = file_get_contents('/my/local/dir/picture.jpg');
$returnedData = $storage->storeItem('/my/remote/path/
picture.jpg', $data);


                                                  Supports	
  
                                                Azure	
  &	
  AWS
<?php
$storage = Zend_Cloud_StorageService_Factory::getAdapter(
array(
    Zend_Cloud_StorageService_Factory::STORAGE_ADAPTER_KEY => 
'Zend_Cloud_StorageService_Adapter_FileSystem',
    Zend_Cloud_StorageService_Adapter_FileSystem::LOCAL_DIRECT
ORY   => $localDirectory,
));
$data = file_get_contents('/my/local/dir/picture.jpg');
$returnedData = $storage->storeItem('/my/remote/path/
picture.jpg', $data);

                                                   Even	
  
      Put	
                                   supports	
  local	
  
   opXons	
  in	
                               file	
  system
   config	
  file
Design	
  
     pawerns
                                  Modular	
  
    e.g.
                 AbstracXon	
      design
Dependency	
  
 injecXon          layers
+	
  
W3	
  Total	
  
 Cache
W3	
  Total	
  Cache

✓Page	
  caching	
  
 -­‐ Memcached	
  (loadbalanced)
 -­‐ Varnish	
  (loadbalanced)
✓Database	
  &	
  object	
  cache
 -­‐ Memcached	
  (loadbalanced)
✓CDN
 -­‐ Push	
  to	
  S3	
  or	
  Azure	
  Blob	
  storage	
  buckets
 -­‐ Pull	
  from	
  CDN	
  (CloudFront	
  or	
  Azure)
 -­‐ Custom	
  hostnames
✓Scale	
  across	
  EC2	
  nodes	
  with	
  ELB
Deploy	
  your	
  code
Deploy	
  your	
  code

✓General	
  deployment	
  methods
  –Capistrano
  –Phing
  –Puppet	
  (config	
  is	
  code	
  too)
  –Version	
  control	
  tools
✓Amazon	
  specific
  –AMI’s
✓Azure	
  specific
  –Scaffolding	
  &	
  packaging	
  	
  command	
  line	
  tool
  –Upload	
  packages	
  in	
  control	
  panel
✓Orchestra	
  specific
  –Git
About	
  Azure	
  deployment
About	
  Azure	
  deployment
scaffolder	
  run	
  -­‐out="c:tempHelloAzureProject"

package	
  create	
  -­‐in="C:tempHelloAzureProject"	
  
-­‐out="C:tempHelloAzureDeployDev"	
  -­‐dev=true

                package	
                  package	
  
         for	
  deployment                and	
  run	
  on	
  
                                           emulator
package	
  create	
  -­‐in="C:tempHelloAzureProject"	
  
-­‐out="C:tempHelloAzureDeployProduction"	
  -­‐
dev=false
About	
  Azure	
  deployment
                           Semngs.ini


Certificate=XXXXXXXX
SubscriptionId=XXXXX
Passphrase=XXXXXXXXX
StorageAccount=XXXXX
PackageLocation=_filesPhpOnAzure.cspkg
ServiceConfigLocation=_files
ServiceConfiguration.cscfg
About	
  Azure	
  deployment

deployment.php	
  CreateFromLocal	
  -­‐-­‐
ConfigFile="settings.ini"	
  -­‐-­‐Name="mysubdomain"	
  
-­‐-­‐DeploymentName="testdeploy"	
  -­‐-­‐
Label="testdeploy"	
  -­‐-­‐BySlot="staging"	
  -­‐-­‐
StartImmediately	
  -­‐-­‐WaitFor


                                    Deploy	
  
                                   to	
  staging
About	
  Azure	
  deployment

deployment.php	
  Swap	
  -­‐-­‐ConfigFile="settings.ini"	
  
-­‐-­‐Name="mysubdomain"	
  -­‐-­‐WaitFor

                  Scale	
                         Swap	
  
                   out                     to	
  producXon

deployment.php	
  EditInstanceNumber	
  -­‐-­‐
ConfigFile="settings.ini"	
  -­‐-­‐Name="subdomain"	
  -­‐-­‐
ByName="testdeploy"	
  -­‐-­‐RoleName="PhpOnAzure.Web"	
  
-­‐-­‐NewInstanceNumber=2
Mix	
  &	
  match
Management	
  models	
  (oAen	
  forgoBen)
Management	
  models	
  (oAen	
  forgoBen)

      Managed	
  Cloud	
  is	
  the	
  
      new	
  dedicated	
  server

      Unmanaged	
  Cloud	
  is	
  
       virtual	
  colocaXon
Management	
  models	
  (oAen	
  forgoBen)

   Custom	
  soluXon	
  at	
  hoster	
  
       under	
  heavy	
  SLA

 Burst	
  model	
  at	
  unmanaged	
  
             vendor
When	
  to	
  choose	
  what?
Develop and deploy using Hybrid Cloud Strategies confoo2012
Develop and deploy using Hybrid Cloud Strategies confoo2012

Weitere ähnliche Inhalte

Was ist angesagt?

Amazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and MigrationAmazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and Migration
Amazon Web Services
 

Was ist angesagt? (20)

Amazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and MigrationAmazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and Migration
 
AWS Black Belt Online Seminar AWS CloudFormation アップデート
AWS Black Belt Online Seminar AWS CloudFormation アップデートAWS Black Belt Online Seminar AWS CloudFormation アップデート
AWS Black Belt Online Seminar AWS CloudFormation アップデート
 
Amazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and MigrationAmazon RDS for MySQL: Best Practices and Migration
Amazon RDS for MySQL: Best Practices and Migration
 
Deep dive into AWS fargate
Deep dive into AWS fargateDeep dive into AWS fargate
Deep dive into AWS fargate
 
Building Open Source Platforms on AWS (April 2017)
Building Open Source Platforms on AWS (April 2017)Building Open Source Platforms on AWS (April 2017)
Building Open Source Platforms on AWS (April 2017)
 
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
20200422 AWS Black Belt Online Seminar Amazon Elastic Container Service (Amaz...
 
コンテンツ配信: CloudFront & 名前解決サービス: Route 53 詳細 -ほぼ週刊AWSマイスターシリーズ第3回-
コンテンツ配信: CloudFront & 名前解決サービス: Route 53 詳細 -ほぼ週刊AWSマイスターシリーズ第3回- コンテンツ配信: CloudFront & 名前解決サービス: Route 53 詳細 -ほぼ週刊AWSマイスターシリーズ第3回-
コンテンツ配信: CloudFront & 名前解決サービス: Route 53 詳細 -ほぼ週刊AWSマイスターシリーズ第3回-
 
AWS SSA Webinar 28 - Getting Started with AWS - Infrastructure as Code
AWS SSA Webinar 28 - Getting Started with AWS - Infrastructure as CodeAWS SSA Webinar 28 - Getting Started with AWS - Infrastructure as Code
AWS SSA Webinar 28 - Getting Started with AWS - Infrastructure as Code
 
Boost your website by running PHP on Nginx
Boost your website by running PHP on NginxBoost your website by running PHP on Nginx
Boost your website by running PHP on Nginx
 
NEW LAUNCH! Introducing AWS Fargate - CON214 - re:Invent 2017
NEW LAUNCH! Introducing AWS Fargate - CON214 - re:Invent 2017NEW LAUNCH! Introducing AWS Fargate - CON214 - re:Invent 2017
NEW LAUNCH! Introducing AWS Fargate - CON214 - re:Invent 2017
 
Build a Java Spring Application on Amazon ECS - CON332 - re:Invent 2017
Build a Java Spring Application on Amazon ECS - CON332 - re:Invent 2017Build a Java Spring Application on Amazon ECS - CON332 - re:Invent 2017
Build a Java Spring Application on Amazon ECS - CON332 - re:Invent 2017
 
Scalable Web Arch
Scalable Web ArchScalable Web Arch
Scalable Web Arch
 
AWSome Day - Rio de Janeiro - Brasil
AWSome Day - Rio de Janeiro - BrasilAWSome Day - Rio de Janeiro - Brasil
AWSome Day - Rio de Janeiro - Brasil
 
Comenzando com la nube hibrida
Comenzando com la nube hibrida Comenzando com la nube hibrida
Comenzando com la nube hibrida
 
Moving to Containers: Building with Docker and Amazon ECS - CON310 - re:Inven...
Moving to Containers: Building with Docker and Amazon ECS - CON310 - re:Inven...Moving to Containers: Building with Docker and Amazon ECS - CON310 - re:Inven...
Moving to Containers: Building with Docker and Amazon ECS - CON310 - re:Inven...
 
CON209_Interstella 8888 Learn How to Use Docker on AWS
CON209_Interstella 8888 Learn How to Use Docker on AWSCON209_Interstella 8888 Learn How to Use Docker on AWS
CON209_Interstella 8888 Learn How to Use Docker on AWS
 
[AWS Builders] Effective AWS Glue
[AWS Builders] Effective AWS Glue[AWS Builders] Effective AWS Glue
[AWS Builders] Effective AWS Glue
 
CMP209_Getting started with Docker on AWS
CMP209_Getting started with Docker on AWSCMP209_Getting started with Docker on AWS
CMP209_Getting started with Docker on AWS
 
Scalability at GROU.PS
Scalability at GROU.PSScalability at GROU.PS
Scalability at GROU.PS
 
Automate and Scale Configuration Management with AWS OpsWorks - DEV331 - re:I...
Automate and Scale Configuration Management with AWS OpsWorks - DEV331 - re:I...Automate and Scale Configuration Management with AWS OpsWorks - DEV331 - re:I...
Automate and Scale Configuration Management with AWS OpsWorks - DEV331 - re:I...
 

Andere mochten auch

Conte La Castanyera
Conte La CastanyeraConte La Castanyera
Conte La Castanyera
Veronicavm
 
My Trip to Mohenjo-daro
My Trip to Mohenjo-daroMy Trip to Mohenjo-daro
My Trip to Mohenjo-daro
Mrs. McCabe
 
World Cultures Slide Show
World Cultures Slide ShowWorld Cultures Slide Show
World Cultures Slide Show
Mrs. McCabe
 
Better Connecting the Somewhat Connected
Better Connecting the Somewhat ConnectedBetter Connecting the Somewhat Connected
Better Connecting the Somewhat Connected
Christina Cacioppo
 
Jane Chyuns Journal
Jane Chyuns JournalJane Chyuns Journal
Jane Chyuns Journal
jane940325
 
Presentatie januari
Presentatie januariPresentatie januari
Presentatie januari
Bibherzele
 
La base per a l'aprenentatge s xxi
La base per a l'aprenentatge s xxiLa base per a l'aprenentatge s xxi
La base per a l'aprenentatge s xxi
Nuria Alart
 
Wall Epresentation
Wall EpresentationWall Epresentation
Wall Epresentation
guestfe21ccf
 

Andere mochten auch (20)

Conte La Castanyera
Conte La CastanyeraConte La Castanyera
Conte La Castanyera
 
Market Perspective
Market PerspectiveMarket Perspective
Market Perspective
 
My Trip to Mohenjo-daro
My Trip to Mohenjo-daroMy Trip to Mohenjo-daro
My Trip to Mohenjo-daro
 
Lista Unitária de Ordenação Final Horário nº 29- Grupo de recrutamento de cód...
Lista Unitária de Ordenação Final Horário nº 29- Grupo de recrutamento de cód...Lista Unitária de Ordenação Final Horário nº 29- Grupo de recrutamento de cód...
Lista Unitária de Ordenação Final Horário nº 29- Grupo de recrutamento de cód...
 
World Cultures Slide Show
World Cultures Slide ShowWorld Cultures Slide Show
World Cultures Slide Show
 
Bridges Of 2008 No Names
Bridges Of 2008   No NamesBridges Of 2008   No Names
Bridges Of 2008 No Names
 
Final
FinalFinal
Final
 
Better Connecting the Somewhat Connected
Better Connecting the Somewhat ConnectedBetter Connecting the Somewhat Connected
Better Connecting the Somewhat Connected
 
Motorcycle Collides With Car
Motorcycle Collides With CarMotorcycle Collides With Car
Motorcycle Collides With Car
 
Bai 4 Phanlop
Bai 4 PhanlopBai 4 Phanlop
Bai 4 Phanlop
 
Weird Time - Ignite Phoenix
Weird Time - Ignite PhoenixWeird Time - Ignite Phoenix
Weird Time - Ignite Phoenix
 
Jane Chyuns Journal
Jane Chyuns JournalJane Chyuns Journal
Jane Chyuns Journal
 
Gospel at home 2
Gospel at home 2Gospel at home 2
Gospel at home 2
 
Putfoot Rally
Putfoot RallyPutfoot Rally
Putfoot Rally
 
Presentatie januari
Presentatie januariPresentatie januari
Presentatie januari
 
La base per a l'aprenentatge s xxi
La base per a l'aprenentatge s xxiLa base per a l'aprenentatge s xxi
La base per a l'aprenentatge s xxi
 
Brand Valuation - Review of the 2013 League Tables
Brand Valuation - Review of the 2013 League TablesBrand Valuation - Review of the 2013 League Tables
Brand Valuation - Review of the 2013 League Tables
 
Wall Epresentation
Wall EpresentationWall Epresentation
Wall Epresentation
 
Lista unitária graduação musica 1183
Lista unitária graduação musica 1183Lista unitária graduação musica 1183
Lista unitária graduação musica 1183
 
L‘Harmony_Report
L‘Harmony_ReportL‘Harmony_Report
L‘Harmony_Report
 

Ähnlich wie Develop and deploy using Hybrid Cloud Strategies confoo2012

2013 05-fite-club-working-models-cloud-growing-up
2013 05-fite-club-working-models-cloud-growing-up2013 05-fite-club-working-models-cloud-growing-up
2013 05-fite-club-working-models-cloud-growing-up
Alex Heneveld
 

Ähnlich wie Develop and deploy using Hybrid Cloud Strategies confoo2012 (20)

데이터 마이그레이션 AWS와 같이하기 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
데이터 마이그레이션 AWS와 같이하기 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming데이터 마이그레이션 AWS와 같이하기 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
데이터 마이그레이션 AWS와 같이하기 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
 
(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce(BDT208) A Technical Introduction to Amazon Elastic MapReduce
(BDT208) A Technical Introduction to Amazon Elastic MapReduce
 
Cloud computing & lamp applications
Cloud computing & lamp applicationsCloud computing & lamp applications
Cloud computing & lamp applications
 
An introduction to AWS CloudFormation - Pop-up Loft Tel Aviv
An introduction to AWS CloudFormation - Pop-up Loft Tel AvivAn introduction to AWS CloudFormation - Pop-up Loft Tel Aviv
An introduction to AWS CloudFormation - Pop-up Loft Tel Aviv
 
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and moreScaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
Scaling Drupal in AWS Using AutoScaling, Cloudformation, RDS and more
 
3. v sphere big data extensions
3. v sphere big data extensions3. v sphere big data extensions
3. v sphere big data extensions
 
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
AWS re:Invent 2016: ElastiCache Deep Dive: Best Practices and Usage Patterns ...
 
ENT313 Deploying a Disaster Recovery Site on AWS: Minimal Cost with Maximum E...
ENT313 Deploying a Disaster Recovery Site on AWS: Minimal Cost with Maximum E...ENT313 Deploying a Disaster Recovery Site on AWS: Minimal Cost with Maximum E...
ENT313 Deploying a Disaster Recovery Site on AWS: Minimal Cost with Maximum E...
 
2013 05-fite-club-working-models-cloud-growing-up
2013 05-fite-club-working-models-cloud-growing-up2013 05-fite-club-working-models-cloud-growing-up
2013 05-fite-club-working-models-cloud-growing-up
 
Masterclass Live: Amazon EMR
Masterclass Live: Amazon EMRMasterclass Live: Amazon EMR
Masterclass Live: Amazon EMR
 
Corley scalability
Corley scalabilityCorley scalability
Corley scalability
 
Dev & Test on AWS Webinar October 2017 - IL Webinar
Dev & Test on AWS Webinar October 2017 - IL WebinarDev & Test on AWS Webinar October 2017 - IL Webinar
Dev & Test on AWS Webinar October 2017 - IL Webinar
 
NWCloud Cloud Track - Best Practices for Architecting in the Cloud
NWCloud Cloud Track - Best Practices for Architecting in the CloudNWCloud Cloud Track - Best Practices for Architecting in the Cloud
NWCloud Cloud Track - Best Practices for Architecting in the Cloud
 
An MPI-IO Cloud Cluster Bioinformatics Summer Project (BDT205) | AWS re:Inven...
An MPI-IO Cloud Cluster Bioinformatics Summer Project (BDT205) | AWS re:Inven...An MPI-IO Cloud Cluster Bioinformatics Summer Project (BDT205) | AWS re:Inven...
An MPI-IO Cloud Cluster Bioinformatics Summer Project (BDT205) | AWS re:Inven...
 
2013 05-openstack-israel-heat
2013 05-openstack-israel-heat2013 05-openstack-israel-heat
2013 05-openstack-israel-heat
 
Databases on aws part 1
Databases on aws   part 1Databases on aws   part 1
Databases on aws part 1
 
Scaling the Platform for Your Startup
Scaling the Platform for Your StartupScaling the Platform for Your Startup
Scaling the Platform for Your Startup
 
(APP313) NEW LAUNCH: Amazon EC2 Container Service in Action | AWS re:Invent 2014
(APP313) NEW LAUNCH: Amazon EC2 Container Service in Action | AWS re:Invent 2014(APP313) NEW LAUNCH: Amazon EC2 Container Service in Action | AWS re:Invent 2014
(APP313) NEW LAUNCH: Amazon EC2 Container Service in Action | AWS re:Invent 2014
 
TIAD : Automating the modern datacenter
TIAD : Automating the modern datacenterTIAD : Automating the modern datacenter
TIAD : Automating the modern datacenter
 
Dev & Test on AWS - Hebrew Webinar
Dev & Test on AWS - Hebrew WebinarDev & Test on AWS - Hebrew Webinar
Dev & Test on AWS - Hebrew Webinar
 

Mehr von Combell NV

2012 03-27 developers e-commercedag presentatie5 ssl
2012 03-27 developers e-commercedag presentatie5 ssl2012 03-27 developers e-commercedag presentatie5 ssl
2012 03-27 developers e-commercedag presentatie5 ssl
Combell NV
 
2012 03-27 developers e-commercedag presentatie2 drupal
2012 03-27 developers e-commercedag presentatie2 drupal2012 03-27 developers e-commercedag presentatie2 drupal
2012 03-27 developers e-commercedag presentatie2 drupal
Combell NV
 
2012 03-27 developers e-commercedag presentatie1 magento
2012 03-27 developers e-commercedag presentatie1 magento2012 03-27 developers e-commercedag presentatie1 magento
2012 03-27 developers e-commercedag presentatie1 magento
Combell NV
 
2012 03-27 developers e-commercedag presentatie4 ogone
2012 03-27 developers e-commercedag presentatie4 ogone2012 03-27 developers e-commercedag presentatie4 ogone
2012 03-27 developers e-commercedag presentatie4 ogone
Combell NV
 
2012 02-07 sql denali presentatie microsoft
2012 02-07 sql denali presentatie microsoft2012 02-07 sql denali presentatie microsoft
2012 02-07 sql denali presentatie microsoft
Combell NV
 
Keeping the Cloud in check KATHO
Keeping the Cloud in check KATHOKeeping the Cloud in check KATHO
Keeping the Cloud in check KATHO
Combell NV
 
Hosting tot Cloud Syntra West
Hosting tot Cloud Syntra WestHosting tot Cloud Syntra West
Hosting tot Cloud Syntra West
Combell NV
 

Mehr von Combell NV (20)

Play it extra safe! Kies een goede cyberverzekering
Play it extra safe! Kies een goede cyberverzekeringPlay it extra safe! Kies een goede cyberverzekering
Play it extra safe! Kies een goede cyberverzekering
 
Hoe gebruik je het resellerplatform als partner van Combell
Hoe gebruik je het resellerplatform als partner van CombellHoe gebruik je het resellerplatform als partner van Combell
Hoe gebruik je het resellerplatform als partner van Combell
 
Managed WordPress bij Combell – wat doet dat precies?
Managed WordPress bij Combell – wat doet dat precies?Managed WordPress bij Combell – wat doet dat precies?
Managed WordPress bij Combell – wat doet dat precies?
 
Back-ups: Hoe ze je kunnen redden van een cyberaanval
Back-ups: Hoe ze je kunnen redden van een cyberaanvalBack-ups: Hoe ze je kunnen redden van een cyberaanval
Back-ups: Hoe ze je kunnen redden van een cyberaanval
 
Cyberaanvallen: Overzicht, gevolgen en beveiligingstips
Cyberaanvallen: Overzicht, gevolgen en beveiligingstipsCyberaanvallen: Overzicht, gevolgen en beveiligingstips
Cyberaanvallen: Overzicht, gevolgen en beveiligingstips
 
Hoe gebruik je het resellerplatform als partner van Combell
Hoe gebruik je het resellerplatform als partner van CombellHoe gebruik je het resellerplatform als partner van Combell
Hoe gebruik je het resellerplatform als partner van Combell
 
Hoe laat je jouw website scoren in zoekmachines zoals Google
Hoe laat je jouw website scoren in zoekmachines zoals GoogleHoe laat je jouw website scoren in zoekmachines zoals Google
Hoe laat je jouw website scoren in zoekmachines zoals Google
 
Een webshop bouwen in WooCommerce – advanced sessie
Een webshop bouwen in WooCommerce – advanced sessieEen webshop bouwen in WooCommerce – advanced sessie
Een webshop bouwen in WooCommerce – advanced sessie
 
Hoe start je een webshop met WordPress / WooCommerce
Hoe start je een webshop met WordPress / WooCommerceHoe start je een webshop met WordPress / WooCommerce
Hoe start je een webshop met WordPress / WooCommerce
 
Keeping the cloud in check cvodmd
Keeping the cloud in check cvodmdKeeping the cloud in check cvodmd
Keeping the cloud in check cvodmd
 
2012 03-27 developers e-commercedag presentatie5 ssl
2012 03-27 developers e-commercedag presentatie5 ssl2012 03-27 developers e-commercedag presentatie5 ssl
2012 03-27 developers e-commercedag presentatie5 ssl
 
2012 03-27 developers e-commercedag presentatie2 drupal
2012 03-27 developers e-commercedag presentatie2 drupal2012 03-27 developers e-commercedag presentatie2 drupal
2012 03-27 developers e-commercedag presentatie2 drupal
 
2012 03-27 developers e-commercedag presentatie1 magento
2012 03-27 developers e-commercedag presentatie1 magento2012 03-27 developers e-commercedag presentatie1 magento
2012 03-27 developers e-commercedag presentatie1 magento
 
2012 03-27 developers e-commercedag presentatie4 ogone
2012 03-27 developers e-commercedag presentatie4 ogone2012 03-27 developers e-commercedag presentatie4 ogone
2012 03-27 developers e-commercedag presentatie4 ogone
 
10 doe-het-zelf tips om aan e-commerce te doen
10 doe-het-zelf tips om aan e-commerce te doen10 doe-het-zelf tips om aan e-commerce te doen
10 doe-het-zelf tips om aan e-commerce te doen
 
Php through the eyes of a hoster confoo
Php through the eyes of a hoster confooPhp through the eyes of a hoster confoo
Php through the eyes of a hoster confoo
 
2012 02-07 sql denali presentatie microsoft
2012 02-07 sql denali presentatie microsoft2012 02-07 sql denali presentatie microsoft
2012 02-07 sql denali presentatie microsoft
 
11 tips om in de Cloud te raken en er niet uit te vallen
11 tips om in de Cloud te raken en er niet uit te vallen11 tips om in de Cloud te raken en er niet uit te vallen
11 tips om in de Cloud te raken en er niet uit te vallen
 
Keeping the Cloud in check KATHO
Keeping the Cloud in check KATHOKeeping the Cloud in check KATHO
Keeping the Cloud in check KATHO
 
Hosting tot Cloud Syntra West
Hosting tot Cloud Syntra WestHosting tot Cloud Syntra West
Hosting tot Cloud Syntra West
 

Kürzlich hochgeladen

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
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
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
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
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
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 ...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
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
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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...
 
"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 ...
 
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...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
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
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
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
 

Develop and deploy using Hybrid Cloud Strategies confoo2012