SlideShare a Scribd company logo
1 of 205
AWS Summit 2012 | Melbourne


              Welcome
                 Daniel Hand
      Principal Solutions Architect, ANZ
Agenda
 Auto scaling
Agenda
 Auto scaling
 Deploying resources
Agenda
 Auto scaling
 Deploying resources
 Accessing resources
Agenda
 Auto scaling
 Deploying resources
 Accessing resources
 Tracking and identification of resources
Agenda
 Auto scaling
 Deploying resources
 Accessing resources
 Tracking and identification of resources
 Scaling databases
Helping you go from …
Static tiers
Inelastic tiers
Inefficient ops
Less secure use of
AWS credentials
To …
Elastic tiers
Scalable tiers
Efficient use of
resources
Efficient Operations
More secure use of
AWS credentials
Allowing you to …
 Do more in less time
Allowing you to …
 Do more in less time
 Deliver greater results with fewer resources
Allowing you to …
 Do more in less time
 Deliver greater results with fewer resources
 Increase manageability
Allowing you to …
 Do more in less time
 Deliver greater results with fewer resources
 Increase manageability
 Improve security
Happy days …
Auto Scaling
Automatically scale up/down
     EC2 resources
Define a launch configuration
            group
 Specify the properties of new instances
     added to an auto scaling group
Give the launch configuration a name



$PROMPT>as-create-launch-config
WidgetsIncConfig --image-id ami-e6f48ab4
--instance-type t1.micro
Specify the AMI to use




$PROMPT>as-create-launch-config WidgetsIncConfig
--image-id ami-e6f48ab4
--instance-type t1.micro
Specify the EC2 instance type to use




$PROMPT>as-create-launch-config WidgetsIncConfig
--image-id ami-e6f48ab4
--instance-type t1.micro
Optional Parameters
 Block-device-mapping
 Detailed cloud watch monitoring
 SSH key
 Security group membership
 Ramdisk/kernel
 User-data
Define an auto scaling group
Specify limits and placement of resources
      within an auto-scaling group
Give the auto scaling group a name


$PROMPT>as-create-auto-scaling-group
WidgetsIncScalingGroup --launch-configuration
WidgetsIncConfig --availability-zones ap-
southeast-1a ap-southeast-1b --min-size 2 --max-
size 3
Specify the launch config to use


$PROMPT>as-create-auto-scaling-group
WidgetsIncScalingGroup --launch-configuration
WidgetsIncConfig --availability-zones ap-
southeast-1a ap-southeast-1b --min-size 2 --max-
size 3
Specify the availability zones


$PROMPT>as-create-auto-scaling-group
WidgetsIncScalingGroup --launch-configuration
WidgetsIncConfig --availability-zones ap-
southeast-1a ap-southeast-1b --min-size 2 --
max-size 3
Specify group limits


$PROMPT>as-create-auto-scaling-group
WidgetsIncScalingGroup --launch-configuration
WidgetsIncConfig --availability-zones ap-
southeast-1a ap-southeast-1b --min-size 2
--max-size 3
Optional Parameters
 Cool down period
Optional Parameters
 Cool down period
 Grace period
Optional Parameters
 Cool down period
 Grace period
 Health check type
Optional Parameters
 Cool down period
 Grace period
 Health check type
 Load balancer
Optional Parameters
 Cool down period
 Grace period
 Health check type
 Load balancer
 Placement group
Optional Parameters
 Cool down period
 Grace period
 Health check type
 Load balancer
 Placement group
 VPC
Auto scaling
Type #1: Manual scaling
Scale to 3
servers
now
Manual scaling
    Basic use of auto scaling
    Specify desired capacity
    Launch config and auto scaling group parameters apply

$PROMPT> as-set-desired-capacity
WidgetsIncScalingGroup --desired-capacity 3
Auto scaling
Type #2: Scheduled based scaling
Scale to 3
servers at
date:time
Schedule based scaling
    Change the number of instances based on a schedule
    Scaling occurs as a function of time and date
$ PROMPT> as-put-scheduled-update-group-action
scheduledAction1 –g WidgetsIncScalingGroup
--time “2011-12-05T02:00:00Z” –-min 5 –-max
10
Auto scaling
Type #3: Policy based scaling
6:00
AM
8:00
AM
8:00
AM
8:00
AM
7:00
PM
7:00
PM
7:00
PM
Policy based scaling
 Change the number of instances based on
 environmental changes e.g. increased CPU utilisation
 Environmental data provided by CloudWatch or custom
 user defined metrics
 Consists of two components {policies & alarms}
 Puts the AUTO in auto scaling
Give the scaling policy a name




$ PROMPT>as-put-scaling-policy MyScaleUpPolicy
--auto-scaling-group WidgetsIncScalingGroup
--adjustment=1 --type ChangeInCapacity
Specify the auto scaling group it applies to




$ PROMPT>as-put-scaling-policy MyScaleUpPolicy --
auto-scaling-group WidgetsIncScalingGroup
--adjustment=1 --type ChangeInCapacity
Specify the adjustment to take place




$ PROMPT>as-put-scaling-policy MyScaleUpPolicy --
auto-scaling-group WidgetsIncScalingGroup
--adjustment=1 –type ChangeInCapacity
Give the metric alarm a name

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80 --alarm-
actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the comparison operator

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm --
comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80 --alarm-
actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the evaluation period

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80 --alarm-
actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the metric name

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2"
--period 600 --statistic Average --threshold
80 --alarm-actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the period to take an average over

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2"
--period 600 --statistic Average
--threshold 80 --alarm-actions POLICY-
ARN_from_previous_step --dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the % threshold to scale on

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80
--alarm-actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Associate with a policy

$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80
--alarm-actions <POLICY-
ARN_from_previous_step> --dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
Specify the auto scaling group
$ PROMPT>mon-put-metric-alarm MyHighCPUAlarm
--comparison-operator GreaterThanThreshold
--evaluation-periods 1 --metric-name
CPUUtilization --namespace "AWS/EC2" --period
600 --statistic Average --threshold 80 --alarm-
actions POLICY-ARN_from_previous_step
--dimensions
"AutoScalingGroupName=WidgetsIncScalingGro
up"
What if you need to scale on a
metric not available in
CloudWatch?
Custom CloudWatch metrics
 Use CloudWatch to store and provide
     analysis on arbitrary metrics
Push custom metric into CloudWatch




$ mon-put-data -namespace "System/Linux" -metric-
name Memory -dimensions "Host=host1" -value 60
Specify a name space



$ mon-put-data -namespace "System/Linux"
-metric-name Memory -dimensions "Host=host1"
-value 60
Specify a unique name for the metric



$ mon-put-data -namespace "System/Linux"
-metric-name Memory -dimensions "Host=host1" -
value 60
Specify the dimensions of the metric



$ mon-put-data -namespace "System/Linux" -metric-
name Memory -dimensions "Host=host1" -value
60
Specify the value to push




$ mon-put-data -namespace "System/Linux" -metric-
name Memory -dimensions "Host=host1" -value 60
Graph custom metric data
Use custom metric in alarm defintion

$ PROMPT>mon-put-metric-alarm
MyHighMemoryAlarm --comparison-operator
GreaterThanThreshold --evaluation-periods 1 --
metric-name Memory --namespace
”System/Linunx" --period 600 --statistic
Average --threshold 80 --alarm-actions <POLICY-
ARN> --dimensions
"AutoScalingGroupName=WidgetsIncScalingGroup"
How do I manage session
state when using auto
scaling?
Session affinity
Ensuring that users interact
 with the same web server
 throughout their session
Session affinity
  ELB or application generated session tokens
Session affinity
  ELB or application generated session tokens
  Session state contained within web server tier
What happens when I use
HTTPS?
Session affinity over HTTPS
 Terminate session at the ELB
Session affinity over HTTPS
 Terminate session at the ELB
 Re-encrypt to back-end web servers if required
What happens during scale-
down events?
Scale-down   All user sessions
             existing within the
             web server are
             lost
Users needs to re-
establish their
session
Stateless web tier
 Move the state out of the
    auto scaling tier
Sessions
stored in
Elasticache
No sessions are
lost during scale
down operation
Apache Tomcat
Apache Tomcat
 Install memcached-session-manager on each tomcat
 server
Apache Tomcat
 Install memcached-session-manager on each tomcat
 server
 Configure memcached to store copy of state in
 Elasticache
Apache Tomcat
 Install memcached-session-manager on each tomcat
 server
 Configure memcached to store copy of state in
 Elasticache
 If user session is not available from local cache, request
 it from Elasticache
Apache Tomcat
 Install memcached-session-manager on each tomcat
 server
 Configure memcached to store copy of state in
 Elasticache
 If user session is not available from local cache, request
 it from Elasticache
 Use with or without session affinity
Deploying
    Resources
  Techniques to increase
efficiency and productivity
You probably started with…
And then moved to …
You might even be using …
Room for improvement?
You bet!
CloudFormation
Allows you to predictably create and
    manage a collection of AWS
resources via text-based templates
Cloud formation templates
CloudFormation
 Define application stack via simple text file
CloudFormation
 Define application stack via simple text file
 Use stack parameters to customise
CloudFormation
 Define application stack via simple text file
 Use stack parameters to customise
 Deploy new stacks/update existing stacks
CloudFormation
 Define application stack via simple text file
 Use stack parameters to customise
 Deploy new stacks/update existing stacks
 Create templates from existing resources with
 CloudFormer
Define a load balancer
Specify AZs
Define cookie policy
Define listener ports
Define health check
Demonstration
Deploying AWS VPC including
subnets, ELB and web server
     auto scaling group
Demonstration
  Using CloudFormer to
generate a cloud formation
         template
Log onto management console
Select CloudFormation stack
Specify parameters
Create stack
Specify parameters
Select region
Filter resources
Select DNS records
Select network resources
Select remaining resources
 Compute
Select remaining resources
 Compute
 Auto scaling configuration
Select remaining resources
 Compute
 Auto scaling configuration
 Storage
Select remaining resources
 Compute
 Auto scaling configuration
 Storage
 Security
Select remaining resources
 Compute
 Auto scaling configuration
 Storage
 Security
 Other – SQS/SimpleDB
Select remaining resources
•   Compute
•   Auto scaling configuration
•   Storage
•   Security
•   Other – SQS/SimpleDB
•   Operational – Auto scaling triggers
Save template
Access to
     Resources
Securely providing access to
      AWS resources
Secure access from EC2
Providing
access to
DynamoDB
Option #1
Bake in AWS credentials
Bake in AWS credentials
• AWS credentials provide full access to all your AWS
  resources
Bake in AWS credentials
• AWS credentials provide full access to all your AWS
  resources
• If the AMI or EC2 instance is compromised then the
  credentials can be used to access all your resources
Bake in AWS credentials
• AWS credentials provide full access to all your AWS
  resources
• If the AMI or EC2 instance is compromised then the
  credentials can be used to access all your resources
• Rotating credentials requires rebuilding AMI
Need to improve security
and manageability
Identity & Access
  Management
Securely control user access
     to AWS resources
IAM Role based access control
Option #2
Bake in IAM credentials
Bake in IAM credentials
• Reduced the impact in the event that instance or AMI is
  compromised
Bake in IAM credentials
• Reduced the impact in the event that instance or AMI is
  compromised
• Rotating credentials still requires rebuilding AMI
Need to improve
manageability
Option #3
Pass in IAM credentials at boot
Bake in IAM credentials
• Pass in IAM credentials as user-data
Bake in IAM credentials
• Pass in IAM credentials as user-data
• Rotating credentials does not require rebuilding an AMI
Bake in IAM credentials
• Pass in IAM credentials as user-data
• Rotating credentials does not require rebuilding an AMI
• We still need a way to rotate credentials if an instance is
  compromised
Bake in IAM credentials
• Pass in IAM credentials as user-data
• Rotating credentials does not require rebuilding an AMI
• We still need a way to rotate credentials if an instance is
  compromised
• IAM credentials available to any local user with access to
  http://169.254.169.254
Option #4
Two stage look-up of IAM credentials
Two stage look-up of IAM credentials
• Pass in a time-based pre-authenticated URL to IAM
  credentials stored in S3
Two stage look-up of IAM credentials
• Pass in a time-based pre-authenticated URL to IAM
  credentials stored in S3
• Download credentials from S3
Two stage look-up of IAM credentials
• Pass in a time-based pre-authenticated URL to IAM
  credentials stored in S3
• Download credentials from S3
• If instance is compromised after URL expires then we
  expire the IAM credentials on S3
Two stage look-up of IAM credentials
• Pass in a time-based pre-authenticated URL to IAM
  credentials stored in S3
• Download credentials from S3
• If instance is compromised after URL expires then we
  expire the IAM credentials on S3
• Improved security but complicates auto scaling
Option #5
Add IAM to config file management
Add IAM to config file management
• Register instance with config management tool on boot
  e.g. puppet/chef
Add IAM to config file management
• Register instance with config management tool on boot
  e.g. puppet/chef
• Deploy latest valid credentials
Add IAM to config file management
• Register instance with config management tool on boot
  e.g. puppet/chef
• Deploy latest valid credentials
• In the event that you need to rotate IAM credentials push
  the latest set to to each instance
Secure access from mobile
         devices
Option #1
Create an IAM user for each connecting
                device
This isn’t
going to scale
IAM temporary
security credentials
 Time-based access to AWS
   resources for IAM users
IAM temporary security credentials
IAM temporary security credentials
• Create a small number of IAM users for mobile devices
IAM temporary security credentials
• Create a small number of IAM users for mobile devices
• Device user authenticates via session proxy
IAM temporary security credentials
• Create a small number of IAM users for mobile devices
• Device user authenticates via session proxy
• Session proxy requests token from AWS security token
  service
IAM temporary security credentials
• Create a small number of IAM users for mobile devices
• Device user authenticates via session proxy
• Session proxy requests token from AWS security token
  service
• Token passed to device
Tracking &
identification of
   resources
How can I keep track of
my AWS resources?
Create order with tags
Create order with tags
View Name tags for EC2 resources
Filter based on tags
Tag instances based on use
Access Tags via the CLI

$ PROMPT>ec2-create-tags ami-1a2b3c4di i-6f5d4e3a
–tag webserver –tag stack=production

TAG   ami-1a2b3c4di image webserver
TAG   ami-1a2b3c4di image stack production
TAG   i-6f5d4e3a image webserver
TAG   i-6f5d4e3a image stack production
Tag auto scaling groups



$ PROMPT>as-describe-auto-scaling-groups MyTagASG
AUTO-SCALING-GROUP MyTagLC us-east-1a 1 10 5
INSTANCE INSTANCE-ID AVAILABILITY-ZONE STATE STATUS LAUNCH-CONFIG
TAG RESOURCE-ID RESOURCE-TYPE KEY VALUE PROPOGATE-AT-LAUNCH TAG
MyTagASG auto-scaling-group version 1.0 true
Tag EBS volumes
CloudFormation & tags
Tag many types of resource

•   Image                   •   VPC
•   Instance                •   Subnet
•   Security group          •   Internet gateway
•   EBS volume              •   VPN connection
•   EBS snap-shot           •   Virtual private gateway
•   Reserved instance       •   Customer gateway
•   Spot instance request   •   Route table
                            •   Network ACL
Scaling Databases
NoSQL Vs relational databases
Managed database services


                               Amazon
                              Relational
                              Database
                            (Amazon RDS)
Play Video
• http://www.youtube.com/watch?v=oz-7wJJ9HZ0
Step #1: Availability
Replication between master and slave
          database servers
Synchronous
replication
Step #2: Optimisation
Apply traditional DB best practices
Optimisation
• Index tables
Optimisation
• Index tables
• Write efficient queries
Optimisation
• Index tables
• Write efficient queries
• Archive old data when not required
Step #3: Scale-up
Use larger EC2 instance types
Step #4: Caching
Store common queries in a memory cache
         such as ElastiCache
Elasticache
Form SQL statement
Return result if it is in the cache
Else query DB and update cache
Step 5: Scale-out
  Use read-replicas
Read replicas
Read replicas
• Modify application to use a connection pool
Read replicas
• Modify application to use a connection pool
• Determine which reads need to be synchronous
Read replicas
• Modify application to use a connection pool
• Determine which reads need to be synchronous
• Determine which reads can be asynchronous
Step 6: Scale-out
   Shard database
Shard database
Sharding
• Choose a suitable primary key to shard on
Sharding
• Choose a suitable primary key to shard on
• Split database across multiple database servers
Sharding
• Choose a suitable primary key to shard on
• Split database across multiple database servers
• Implement two-stage shard access at application tier
   • Stage #1 – What shard modulus does customer X use
   • Stage #2 - Direct query at relevant database
Thank You!

More Related Content

Viewers also liked

Presentacion rocio rubiani
Presentacion rocio rubianiPresentacion rocio rubiani
Presentacion rocio rubianiRocio Rubiani
 
Brico reparar subida bandeja maletero
Brico reparar subida bandeja maleteroBrico reparar subida bandeja maletero
Brico reparar subida bandeja maleterolalovillarejo
 
2007 Campaign to Promote Chile's New Image in China
2007 Campaign to Promote Chile's New Image in China2007 Campaign to Promote Chile's New Image in China
2007 Campaign to Promote Chile's New Image in ChinaLeslie Forman
 
Einstein the manufacture and sale of saint einstein - christopher jon bjerk...
Einstein   the manufacture and sale of saint einstein - christopher jon bjerk...Einstein   the manufacture and sale of saint einstein - christopher jon bjerk...
Einstein the manufacture and sale of saint einstein - christopher jon bjerk...Jose Felix
 
Proyecto de computación
Proyecto de computación Proyecto de computación
Proyecto de computación suhca
 
#TormesEmprende : IV Jornada Emprendedores.
#TormesEmprende : IV Jornada Emprendedores.#TormesEmprende : IV Jornada Emprendedores.
#TormesEmprende : IV Jornada Emprendedores.Fernando Fregeneda Chico
 
Fotos editadas con Picaza 3
Fotos editadas con Picaza 3Fotos editadas con Picaza 3
Fotos editadas con Picaza 3Rossi Potenciano
 
tronko de ensayo para que sirven las matematicas
tronko de ensayo para que sirven las matematicastronko de ensayo para que sirven las matematicas
tronko de ensayo para que sirven las matematicasAndres Puello
 
Innovación y educación social
Innovación y educación socialInnovación y educación social
Innovación y educación socialJuan Pedregosa
 
Escanear0003
Escanear0003Escanear0003
Escanear0003zangrela
 
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)Juan Bueno Jiménez
 
Hª de españa revolucion liberal 1788-1843
Hª de españa revolucion liberal 1788-1843Hª de españa revolucion liberal 1788-1843
Hª de españa revolucion liberal 1788-1843viruzain
 
Pop art op art, una carretera paralela a la psicodelia
Pop art op art, una carretera paralela a la psicodeliaPop art op art, una carretera paralela a la psicodelia
Pop art op art, una carretera paralela a la psicodeliaOscar Javier Aleman Barrios
 
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015Pierino Stucchi
 
Plan de negocio
Plan de negocio Plan de negocio
Plan de negocio coso16
 

Viewers also liked (20)

Amar administrando
Amar administrandoAmar administrando
Amar administrando
 
Presentacion rocio rubiani
Presentacion rocio rubianiPresentacion rocio rubiani
Presentacion rocio rubiani
 
Brico reparar subida bandeja maletero
Brico reparar subida bandeja maleteroBrico reparar subida bandeja maletero
Brico reparar subida bandeja maletero
 
2007 Campaign to Promote Chile's New Image in China
2007 Campaign to Promote Chile's New Image in China2007 Campaign to Promote Chile's New Image in China
2007 Campaign to Promote Chile's New Image in China
 
Einstein the manufacture and sale of saint einstein - christopher jon bjerk...
Einstein   the manufacture and sale of saint einstein - christopher jon bjerk...Einstein   the manufacture and sale of saint einstein - christopher jon bjerk...
Einstein the manufacture and sale of saint einstein - christopher jon bjerk...
 
Proyecto de computación
Proyecto de computación Proyecto de computación
Proyecto de computación
 
#TormesEmprende : IV Jornada Emprendedores.
#TormesEmprende : IV Jornada Emprendedores.#TormesEmprende : IV Jornada Emprendedores.
#TormesEmprende : IV Jornada Emprendedores.
 
Power panda
Power pandaPower panda
Power panda
 
Fotos editadas con Picaza 3
Fotos editadas con Picaza 3Fotos editadas con Picaza 3
Fotos editadas con Picaza 3
 
tronko de ensayo para que sirven las matematicas
tronko de ensayo para que sirven las matematicastronko de ensayo para que sirven las matematicas
tronko de ensayo para que sirven las matematicas
 
Innovación y educación social
Innovación y educación socialInnovación y educación social
Innovación y educación social
 
Berry alloc dreamclick
Berry alloc dreamclickBerry alloc dreamclick
Berry alloc dreamclick
 
Escanear0003
Escanear0003Escanear0003
Escanear0003
 
Derecho griego
Derecho griegoDerecho griego
Derecho griego
 
Informe social minsal
Informe social minsalInforme social minsal
Informe social minsal
 
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)
Orientaciones familiares para la lectura. Por Cristina Garrido (EOE)
 
Hª de españa revolucion liberal 1788-1843
Hª de españa revolucion liberal 1788-1843Hª de españa revolucion liberal 1788-1843
Hª de españa revolucion liberal 1788-1843
 
Pop art op art, una carretera paralela a la psicodelia
Pop art op art, una carretera paralela a la psicodeliaPop art op art, una carretera paralela a la psicodelia
Pop art op art, una carretera paralela a la psicodelia
 
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015
Publicidad comparativa - Pierino Stucchi en Indecopi - 10 dic 2015
 
Plan de negocio
Plan de negocio Plan de negocio
Plan de negocio
 

Similar to Black Belt Dojo - Daniel Hand - AWS Summit 2012 Australia

Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial Infrastructure
Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial InfrastructureUsing AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial Infrastructure
Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial InfrastructureChristopher Drumgoole
 
AutoScaling and Drupal
AutoScaling and DrupalAutoScaling and Drupal
AutoScaling and DrupalPromet Source
 
All you need to know about Auto scaling - Pop-up Loft
All you need to know about Auto scaling - Pop-up LoftAll you need to know about Auto scaling - Pop-up Loft
All you need to know about Auto scaling - Pop-up LoftAmazon Web Services
 
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)AWS Summit London 2014 | Improving Availability and Lowering Costs (300)
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)Amazon Web Services
 
Amazon EMR Masterclass
Amazon EMR MasterclassAmazon EMR Masterclass
Amazon EMR MasterclassIan Massingham
 
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and Nagios
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and NagiosNagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and Nagios
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and NagiosNagios
 
Cloudwatch - The In's and Out's
Cloudwatch - The In's and Out'sCloudwatch - The In's and Out's
Cloudwatch - The In's and Out'sbeaknit
 
AWS Incident Response Cheat Sheet.pdf
AWS Incident Response Cheat Sheet.pdfAWS Incident Response Cheat Sheet.pdf
AWS Incident Response Cheat Sheet.pdfChristopher Doman
 
Cloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataCloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataAbhishek M Shivalingaiah
 
Rally - Benchmarking_as_a_service - Openstack meetup
Rally - Benchmarking_as_a_service - Openstack meetupRally - Benchmarking_as_a_service - Openstack meetup
Rally - Benchmarking_as_a_service - Openstack meetupAnanth Padmanabhan
 
Dive into DevOps | March, Building with Terraform, Volodymyr Tsap
Dive into DevOps | March, Building with Terraform, Volodymyr TsapDive into DevOps | March, Building with Terraform, Volodymyr Tsap
Dive into DevOps | March, Building with Terraform, Volodymyr TsapProvectus
 
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on Openstack
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on OpenstackLinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on Openstack
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on OpenstackOpenShift Origin
 
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.Rahul Krishna Upadhyaya
 
Cost Optimisation at Scale - Business
Cost Optimisation at Scale - BusinessCost Optimisation at Scale - Business
Cost Optimisation at Scale - BusinessAmazon Web Services
 
Advanced Task Scheduling with Amazon ECS (June 2017)
Advanced Task Scheduling with Amazon ECS (June 2017)Advanced Task Scheduling with Amazon ECS (June 2017)
Advanced Task Scheduling with Amazon ECS (June 2017)Julien SIMON
 
Dynamic Creative (Non Contextual)
Dynamic Creative (Non Contextual)Dynamic Creative (Non Contextual)
Dynamic Creative (Non Contextual)Morten Arngren, PhD
 

Similar to Black Belt Dojo - Daniel Hand - AWS Summit 2012 Australia (20)

Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial Infrastructure
Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial InfrastructureUsing AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial Infrastructure
Using AWS CloudWatch Custom Metrics and EC2 Auto Scaling -VSocial Infrastructure
 
AutoScaling and Drupal
AutoScaling and DrupalAutoScaling and Drupal
AutoScaling and Drupal
 
IoT Heaps 6
IoT Heaps 6IoT Heaps 6
IoT Heaps 6
 
All you need to know about Auto scaling - Pop-up Loft
All you need to know about Auto scaling - Pop-up LoftAll you need to know about Auto scaling - Pop-up Loft
All you need to know about Auto scaling - Pop-up Loft
 
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)AWS Summit London 2014 | Improving Availability and Lowering Costs (300)
AWS Summit London 2014 | Improving Availability and Lowering Costs (300)
 
Auto Scaling on AWS
Auto Scaling on AWSAuto Scaling on AWS
Auto Scaling on AWS
 
Amazon EMR Masterclass
Amazon EMR MasterclassAmazon EMR Masterclass
Amazon EMR Masterclass
 
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and Nagios
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and NagiosNagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and Nagios
Nagios Conference 2012 - Sheeri Cabral - Alerting With MySQL and Nagios
 
Aspects of 10 Tuning
Aspects of 10 TuningAspects of 10 Tuning
Aspects of 10 Tuning
 
Cloudwatch - The In's and Out's
Cloudwatch - The In's and Out'sCloudwatch - The In's and Out's
Cloudwatch - The In's and Out's
 
AWS Incident Response Cheat Sheet.pdf
AWS Incident Response Cheat Sheet.pdfAWS Incident Response Cheat Sheet.pdf
AWS Incident Response Cheat Sheet.pdf
 
Cloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big DataCloudera Movies Data Science Project On Big Data
Cloudera Movies Data Science Project On Big Data
 
Rally - Benchmarking_as_a_service - Openstack meetup
Rally - Benchmarking_as_a_service - Openstack meetupRally - Benchmarking_as_a_service - Openstack meetup
Rally - Benchmarking_as_a_service - Openstack meetup
 
Dive into DevOps | March, Building with Terraform, Volodymyr Tsap
Dive into DevOps | March, Building with Terraform, Volodymyr TsapDive into DevOps | March, Building with Terraform, Volodymyr Tsap
Dive into DevOps | March, Building with Terraform, Volodymyr Tsap
 
Deploy in the Cloud
Deploy in the CloudDeploy in the Cloud
Deploy in the Cloud
 
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on Openstack
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on OpenstackLinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on Openstack
LinuxCon 2013 Steven Dake on Using Heat for autoscaling OpenShift on Openstack
 
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
Openstack Rally - Benchmark as a Service. Openstack Meetup India. Ananth/Rahul.
 
Cost Optimisation at Scale - Business
Cost Optimisation at Scale - BusinessCost Optimisation at Scale - Business
Cost Optimisation at Scale - Business
 
Advanced Task Scheduling with Amazon ECS (June 2017)
Advanced Task Scheduling with Amazon ECS (June 2017)Advanced Task Scheduling with Amazon ECS (June 2017)
Advanced Task Scheduling with Amazon ECS (June 2017)
 
Dynamic Creative (Non Contextual)
Dynamic Creative (Non Contextual)Dynamic Creative (Non Contextual)
Dynamic Creative (Non Contextual)
 

More from Amazon Web Services

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Amazon Web Services
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Amazon Web Services
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateAmazon Web Services
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSAmazon Web Services
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Amazon Web Services
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Amazon Web Services
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...Amazon Web Services
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsAmazon Web Services
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareAmazon Web Services
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSAmazon Web Services
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAmazon Web Services
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareAmazon Web Services
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWSAmazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckAmazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without serversAmazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...Amazon Web Services
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceAmazon Web Services
 

More from Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Recently uploaded

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
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 Takeoffsammart93
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 

Recently uploaded (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 

Black Belt Dojo - Daniel Hand - AWS Summit 2012 Australia

Editor's Notes

  1. Two things today: