SlideShare a Scribd company logo
1 of 4
Download to read offline
Dealing with High Demand
Building high-capacity mapping applications
By Keith Mann, Esri Writer




                                                                            A Review of Amazon EC2
                                                                            The strategy for adding capacity to the wildfi re app uses Amazon
                                                                            Web Services (AWS)—specifically, Amazon Elastic Compute Cloud
                                                                            (EC2) (aws.amazon.com/ec2). Amazon describes EC2 as “a web
                                                                            service that provides resizable compute capacity in the cloud.”
                                                                            Essentially, various components of Amazon’s compute infrastruc-
                                                                            ture can be rented to rapidly build a high-capacity support system.
                                                                               The strategy also uses ArcGIS for Server to create and manage
                                                                            the GIS services for the application. Esri provides ArcGIS for Server
                                                                            as an Amazon Machine Image (AMI) running on Amazon EC2. The
                                                                            ArcGIS for Server on Amazon EC2 AMI includes 100 gigabytes of
 The Public Information Map template can be configured to allow            storage. These AMIs can be licensed in the same fashion that ArcGIS
the user to add features to the map.
                                                                            for Server is licensed on a local machine.
                                                                               When you start an instance of ArcGIS for Server on Amazon EC2,


I
    s your mapping application ready for the big time? Maybe a              you choose the ArcGIS for Server AMI, the size and type of machine
    better way to ask this question is, how well will the computing         it will run on, and other services and features such as Elastic Load
    infrastructure that supports your mapping application stand up          Balancing and Auto Scaling.
to a huge spike in demand?                                                     You can upload your data and application to the instance’s storage
   Wildfi res raging in Colorado in 2010 precipitated a real-life test      area and configure them with the ArcGIS for Server instance so that
for Esri. In response to the fi res, Esri published a public informa-       you can publish services and add them to the mapping application.
tion map (PIM) for wildfi res. The wildfi re app ran beautifully on a       Detailed resources for accomplishing these tasks are listed in the
single server machine and seemed to be handling the daily traffic           online version of this article.
with no problem until a major news organization provided a link to
the map in one of its stories. Immediately, demand went through
the roof, and the server exceeded its load capacity. It shut down,
and the wildfi re app went dark.
   The application was quickly reborn, but not on the single server
machine. Th is time, it was set up to run in the cloud. The second
incarnation of the wildfi re app used cloud services to distribute
demand across multiple servers. Additionally, the base structure for
this type of system was established and configured so that server
machines could be added or removed as needed.
   In other words, a scalable system for supporting high-capacity
mapping applications was created. Th is system is now used for all                                   Server Machine
Esri disaster response and current events maps (esri.com/news/
maps/index.html).
   Th is article provides a brief, high-level view of the thought process               File                              ArcGIS for
                                                                                    Geodatabase         Application         Server
used in building the infrastructure for a high-capacity mapping ap-
plication. Although it’s certainly not the only way to do this, it is a
tried-and-true method that allows incremental system design while            Spikes in demand from the Internet can quickly overload a single
maintaining manual control over scalability.                                server machine setup.




38   au Spring 2012 esri.com
Developer’s Corner



                       With two identical single server setups, one
                      can function as the staging setup and the other                           Demand
                      as the production setup.




                                          Staging                                              Production
                                      Server Machine                                         Server Machine

                           File                          ArcGIS for                File                        ArcGIS for
                       Geodatabase      Application        Server              Geodatabase     Application       Server




The Single Server Setup                           The Staging Server and
A common method for deploying a mapping           Production Server Setup
application is to put everything—the map-         Another way to prepare for server overload         the GIS server. Creating a custom AMI can
ping application, the GIS server, and the         situations is to make it easier and faster to      take 20 minutes to an hour. Once it’s cre-
data—on one machine.                              spin up a new instance of your mapping             ated, you can generate new instances from
   Th is method is often used for internal ap-    application if it goes down. To accom-             the custom AMI very quickly—in approxi-
plications because machine usage is either        plish this, fi rst create a single server setup.   mately 15 to 20 minutes.
known or can be safely predicted. However,        Conceptually, you can think of this as your          Having a staging setup lets you test your
when the application is exposed to the            staging setup. Next, make a copy of your           application and make edits before you
Internet, it is more difficult to predict the     staging setup and use the copy as your pro-        deploy the production setup. If you want to
maximum load on the server.                       duction setup. End users only access the re-       add functionality to the application or make
   Sudden spikes in demand can quickly            sources of the production setup. If demand         changes to the data and services, you can do
overload the processing capability of the         overloads your production server, you make         this without disturbing the end users who
server machine and cause it to crash. During      a new copy from the staging setup and use it       are using the production setup. When you’re
the resultant downtime, your customers            to replace the crashed production setup.           ready to deploy the new setup, just kill off
lose access to the application, and you end          On Amazon EC2, making a copy simply             the production instance and replace it with
up spending hours getting the server up and       means starting a new instance from a               the updated production instance.
running, only to have it crash again as soon      custom AMI. To create the custom AMI,                However, this framework doesn’t help you
as users discover its availability.               complete the staging setup and save it as          achieve the capacity needed to support large
   One way to combat spikes in demand is to       an AMI. The custom AMI encapsulates your           spikes in demand. To do that, you’ll need two
use a server machine with more processing         entire setup—the application, the data, and        load-balanced production instances.
power. The problem with this solution is that
you end up paying for a server that is un-
derutilized most of the time. Th is scenario is
true whether you’re deploying your applica-
tion on local infrastructure or in the cloud.
                                                                                                Demand




 A load balancing service can be used to distribute
demand across the two production setups.                                                     Load Balancer




                   Staging                                              Production                                   Production
               Server Machine                                         Server Machine                               Server Machine

    File                          ArcGIS for              File                         ArcGIS for        File                        ArcGIS for
Geodatabase       Application       Server            Geodatabase       Application      Server      Geodatabase      Application      Server




                                                                                                                     esri.com Spring 2012 au   39
 If demand begins to exceed the capacity
                                                                                                                Demand
of the two production AMIs, another
production AMI can be added to the load
balancer.



                                                                                                              Load Balancer




                  Staging                                   Production                                           Production                                           Production
              Server Machine                              Server Machine                                       Server Machine                                       Server Machine

    File                       ArcGIS for       File                          ArcGIS for            File                          ArcGIS for             File                              ArcGIS for
Geodatabase     Application      Server     Geodatabase     Application         Server          Geodatabase      Application        Server           Geodatabase         Application         Server




Setting Up the Staging Server                             Multiple Staging Servers                                                In this case, you make custom AMIs of
and Load-Balanced, Multiple                               and Load-Balanced, Multiple                                           the application server setup and the GIS
Production Servers                                        Production Servers Setup                                              server setup, create two new instances of
In this scenario, you use the custom AMI                  With most mapping applications, you’ll                                each, and load balance the two production
created from the staging setup to generate                want to make improvements, add func-                                  application AMIs and the two GIS server
two identical production instances. Next,                 tionality, or change the look and feel of the                         AMIs. Th is scenario provides scalability to
you employ a load balancing service (called               app on a regular basis. Changes to data and                           your application as well as your GIS server
Elastic Load Balancing on Amazon EC2)                     services usually occur much less frequently.                          and allows you to work on either while re-
that will distribute demand across the pro-               You can take advantage of this phenomenon                             ducing the impact on your end users. Both
duction instances.                                        and make your high-capacity system more                               the application and the GIS server setups
   If something goes wrong with one of the                efficient if you put the application on a dif-                        can be scaled up and down depending on
production instances, the application con-                ferent server from the GIS server and data.                           where the loads are greatest.
tinues to work through the remaining pro-
duction instance. Th is gives you time to start
a new instance of the production instance
and configure it with the load balancer.
   You can also add additional machines                    Splitting the application and the GIS
                                                          server onto their own server setups                                                         Demand
to the load balancing service. If demand                  improves scalability as well as updatability.
increases to a critical threshold—say,
80 percent on both production servers—you
can start a new production instance from                                                                                                            Load Balancer

the custom AMI and add it to the load bal-
ancer. When demand subsides to normal
levels, you can kill off the third production                         Staging Application                            Production Application                         Production Application
                                                                        Server Machine                                  Server Machine                                 Server Machine
instance.
   In this scenario, you are achieving a level                              Application                                    Application                                      Application
of scalability that allows you to manually
respond to spikes in demand that may affect
the performance or viability of your map-
                                                                                                                                                      Demand
ping application. While the load balancer
can be used to monitor whether the applica-
tion is responding properly, it cannot check
the fine-grained functionality of ArcGIS                                                                                                            Load Balancer

services. To more closely monitor your ser-
vices, use ServiceMonitor, a script provided
by Esri that checks each service periodi-                                   Staging GIS                                  Production GIS                                   Production GIS
                                                                          Server Machine                                 Server Machine                                   Server Machine
cally and makes sure it is responding. You
                                                               File
can download the ServiceMonitor script at                  Geodatabase
                                                                                            ArcGIS for
                                                                                              Server
                                                                                                              File
                                                                                                          Geodatabase
                                                                                                                                              ArcGIS for
                                                                                                                                                Server
                                                                                                                                                               File
                                                                                                                                                           Geodatabase
                                                                                                                                                                                             ArcGIS for
                                                                                                                                                                                               Server
arcscripts.esri.com/details.asp?dbid=15335.



40   au Spring 2012 esri.com
Developer’s Corner




Including an Enterprise
Geodatabase Server for Feature
Editing
Some mapping applications allow the end         instances in different zones within the same                      instances exceeds tolerances, another pro-
user to perform feature editing such as         region, you can have them all behind the                          duction instance can be manually or auto-
adding a point, line, or polygon to the map.    same load balancer.                                               matically added to the load balancer.
To have consistency on the production serv-                                                                          If you anticipate frequent changes to the
ers running in the load balancer, editing       Conclusion                                                        application, you may find it useful to put the
must be done in an ArcSDE database. The         To support a high-capacity mapping appli-                         application server and GIS server on sepa-
ArcSDE database should reside on a sepa-        cation, you will need a scalable system of                        rate tiers of the system. Likewise, if your ap-
rate instance from the production instances.    identical setups, each with a GIS server; an                      plication includes the ability to add or edit
These features are stored in an enterprise      application; and, possibly, data server ma-                       map features, you should put the required
geodatabase.                                    chines. If you want to maintain your system                       enterprise geodatabase instance on a sepa-
   Esri also provides an enterprise geodata-    in a manner that minimally impacts your                           rate tier.
base AMI. Data for editable feature services,   end users, consider creating a staging AMI                           These concepts and suggestions are not
is stored in an instance created from this      that you can work on while the production                         the only way to use Amazon EC2 to bring
AMI. After putting the data in the enterprise   AMIs serve your end users. Ideally, there                         high capacity to your mapping application,
geodatabase, creating the feature service,      should be two load-balanced production in-                        but you may find that this model is a prac-
and configuring the service with the ap-        stances in the base structure of the system                       tical approach to maintaining fine-grained
plication, you make a custom AMI of the         so that if one fails, the application remains                     control over how and when your system
staging data server setup and launch new        viable. If demand on both production                              scales.
production instances.
   In this example, one staging data server
and only one production data server are
used to support the application. If possi-
ble, use two production data servers, each
with a mirrored enterprise geodatabase for       If the mapping application includes a feature
                                                editing capability, the data for those features                                        Demand
redundancy. However, currently, this is not     should reside in an enterprise geodatabase.
a simple, out-of-the-box solution provided
with the Esri enterprise geodatabase AMI—
it requires a strong understanding of enter-                                                                                        Load Balancer

prise database management.

Where to Go from Here                                     Staging Application                         Production Application                            Production Application
                                                            Server Machine                               Server Machine                                    Server Machine
Amazon offers an Auto Scaling service that
you can configure with the load balancing                       Application                                 Application                                      Application
service to automatically spin up new produc-
tion instances when load thresholds reach a
specified level. However, you may find that                                                                                            Demand


maintaining manual control over scaling of
your production instances is preferable.
   Amazon’s cloud infrastructure and data                                                                                            Load Balancer
centers are available in a number of regions
around the world. Each region has multi-
ple Availability Zones, designed to protect                    Staging GIS                                 Production GIS                                  Production GIS
                                                              Server Machine
your instances from failure. Instances can                                                                 Server Machine                                  Server Machine


be spread across Availability Zones within          File
                                                Geodatabase
                                                                                ArcGIS for
                                                                                  Server
                                                                                                 File
                                                                                             Geodatabase
                                                                                                                               ArcGIS for
                                                                                                                                 Server
                                                                                                                                                File                             ArcGIS for
                                                                                                                                            Geodatabase                            Server
a Region so that if one data center goes
down, the other instances will continue to
function. The Amazon EC2 Service Level
                                                               Staging Data                                                           Production Data
Agreement commitment is to provide 99.95                      Server Machine                                                          Server Machine

percent availability for each Amazon EC2         Enterprise
                                                Geodatabase
                                                                                                                       Enterprise
                                                                                                                      Geodatabase
Region. As long as you create production



                                                                                                                                             esri.com Spring 2012 au                     41

More Related Content

What's hot

AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...
AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...
AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...Amazon Web Services
 
IBM Software Available In The Cloud With Amazon Web Services
IBM Software Available In The Cloud With Amazon Web ServicesIBM Software Available In The Cloud With Amazon Web Services
IBM Software Available In The Cloud With Amazon Web ServicesSteven Gerhardt
 
Estimating the Cost of a GIS in the Amazon Cloud
Estimating the Cost of a GIS in the Amazon CloudEstimating the Cost of a GIS in the Amazon Cloud
Estimating the Cost of a GIS in the Amazon CloudEsri
 
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...Amazon Web Services
 
Aws tutorial for beginners- tibacademy.in
Aws tutorial for beginners- tibacademy.inAws tutorial for beginners- tibacademy.in
Aws tutorial for beginners- tibacademy.inTIB Academy
 
AWS Update | London - Overview of New Releases
AWS Update | London - Overview of New ReleasesAWS Update | London - Overview of New Releases
AWS Update | London - Overview of New ReleasesAmazon Web Services
 
Imaginea Scales Application using Amazon EC2
Imaginea Scales Application using Amazon EC2Imaginea Scales Application using Amazon EC2
Imaginea Scales Application using Amazon EC2Imaginea
 
Amazon Web Services presentation
Amazon Web Services presentationAmazon Web Services presentation
Amazon Web Services presentationDan-Claudiu Dragoș
 
AWS Webcast - Introducing Amazon RDS for PostgreSQL
AWS Webcast - Introducing Amazon RDS for PostgreSQLAWS Webcast - Introducing Amazon RDS for PostgreSQL
AWS Webcast - Introducing Amazon RDS for PostgreSQLAmazon Web Services
 
13h00 aws 2012-fault_tolerant_applications
13h00   aws 2012-fault_tolerant_applications13h00   aws 2012-fault_tolerant_applications
13h00 aws 2012-fault_tolerant_applicationsinfolive
 
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...white paper
 
Amazon Web Service EC2 & S3
Amazon Web Service EC2 & S3Amazon Web Service EC2 & S3
Amazon Web Service EC2 & S3Pravin Vaja
 
Build a Cloud Render-Ready Infrastructure
Build a Cloud Render-Ready InfrastructureBuild a Cloud Render-Ready Infrastructure
Build a Cloud Render-Ready InfrastructureAvere Systems
 
RunE2E Case Study: SAP BusinessObjects in the AWS Cloud
RunE2E Case Study: SAP BusinessObjects in the AWS CloudRunE2E Case Study: SAP BusinessObjects in the AWS Cloud
RunE2E Case Study: SAP BusinessObjects in the AWS CloudAlex Gramling
 
Aws big picture_overview
Aws big picture_overviewAws big picture_overview
Aws big picture_overviewAjay Bidari
 
CloudStack-Development-Story
CloudStack-Development-StoryCloudStack-Development-Story
CloudStack-Development-StoryKimihiko Kitase
 
Decision support for Amazon Spot Instance
Decision support for Amazon Spot InstanceDecision support for Amazon Spot Instance
Decision support for Amazon Spot InstanceFei Dong
 
13h00 p duff-building-applications-with-aws-final
13h00   p duff-building-applications-with-aws-final13h00   p duff-building-applications-with-aws-final
13h00 p duff-building-applications-with-aws-finalLuiz Gustavo Santos
 
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)GPU Renderfarm with Integrated Asset Management & Production System (AMPS)
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)Budianto Tandianus
 

What's hot (20)

AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...
AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...
AWS Webcast - Introduction to Amazon RDS: Low Admin, High Performance Databas...
 
IBM Software Available In The Cloud With Amazon Web Services
IBM Software Available In The Cloud With Amazon Web ServicesIBM Software Available In The Cloud With Amazon Web Services
IBM Software Available In The Cloud With Amazon Web Services
 
Estimating the Cost of a GIS in the Amazon Cloud
Estimating the Cost of a GIS in the Amazon CloudEstimating the Cost of a GIS in the Amazon Cloud
Estimating the Cost of a GIS in the Amazon Cloud
 
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...
AWS Webcast - Amazon RDS - Running Low Admin High Performance Databases in th...
 
Aws tutorial for beginners- tibacademy.in
Aws tutorial for beginners- tibacademy.inAws tutorial for beginners- tibacademy.in
Aws tutorial for beginners- tibacademy.in
 
AWS Update | London - Overview of New Releases
AWS Update | London - Overview of New ReleasesAWS Update | London - Overview of New Releases
AWS Update | London - Overview of New Releases
 
Imaginea Scales Application using Amazon EC2
Imaginea Scales Application using Amazon EC2Imaginea Scales Application using Amazon EC2
Imaginea Scales Application using Amazon EC2
 
Amazon Web Services presentation
Amazon Web Services presentationAmazon Web Services presentation
Amazon Web Services presentation
 
AWS Webcast - Introducing Amazon RDS for PostgreSQL
AWS Webcast - Introducing Amazon RDS for PostgreSQLAWS Webcast - Introducing Amazon RDS for PostgreSQL
AWS Webcast - Introducing Amazon RDS for PostgreSQL
 
Fault Tolerant Applications on AWS
Fault Tolerant Applications on AWSFault Tolerant Applications on AWS
Fault Tolerant Applications on AWS
 
13h00 aws 2012-fault_tolerant_applications
13h00   aws 2012-fault_tolerant_applications13h00   aws 2012-fault_tolerant_applications
13h00 aws 2012-fault_tolerant_applications
 
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...
Cloud Computing With Amazon Web Services, Part 1: Introduction - When It's Sm...
 
Amazon Web Service EC2 & S3
Amazon Web Service EC2 & S3Amazon Web Service EC2 & S3
Amazon Web Service EC2 & S3
 
Build a Cloud Render-Ready Infrastructure
Build a Cloud Render-Ready InfrastructureBuild a Cloud Render-Ready Infrastructure
Build a Cloud Render-Ready Infrastructure
 
RunE2E Case Study: SAP BusinessObjects in the AWS Cloud
RunE2E Case Study: SAP BusinessObjects in the AWS CloudRunE2E Case Study: SAP BusinessObjects in the AWS Cloud
RunE2E Case Study: SAP BusinessObjects in the AWS Cloud
 
Aws big picture_overview
Aws big picture_overviewAws big picture_overview
Aws big picture_overview
 
CloudStack-Development-Story
CloudStack-Development-StoryCloudStack-Development-Story
CloudStack-Development-Story
 
Decision support for Amazon Spot Instance
Decision support for Amazon Spot InstanceDecision support for Amazon Spot Instance
Decision support for Amazon Spot Instance
 
13h00 p duff-building-applications-with-aws-final
13h00   p duff-building-applications-with-aws-final13h00   p duff-building-applications-with-aws-final
13h00 p duff-building-applications-with-aws-final
 
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)GPU Renderfarm with Integrated Asset Management & Production System (AMPS)
GPU Renderfarm with Integrated Asset Management & Production System (AMPS)
 

Viewers also liked

Electric gas-summer-2013
Electric gas-summer-2013Electric gas-summer-2013
Electric gas-summer-2013Esri
 
GIS for the Fire Service
GIS for the Fire ServiceGIS for the Fire Service
GIS for the Fire ServiceEsri
 
ArcGIS10.2 Desktop Functionality Matrix
ArcGIS10.2 Desktop Functionality MatrixArcGIS10.2 Desktop Functionality Matrix
ArcGIS10.2 Desktop Functionality MatrixEsri
 
How companies are achieving competitive advantage through analytics
How companies are achieving competitive advantage through analyticsHow companies are achieving competitive advantage through analytics
How companies are achieving competitive advantage through analyticsEsri
 
Forest Management with Esri
Forest Management with EsriForest Management with Esri
Forest Management with EsriEsri
 
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...Esri
 
INIA- CISA: Análisis de las amenazas en la fauna silvestre
INIA- CISA: Análisis de las amenazas en la fauna silvestreINIA- CISA: Análisis de las amenazas en la fauna silvestre
INIA- CISA: Análisis de las amenazas en la fauna silvestreEsri
 

Viewers also liked (7)

Electric gas-summer-2013
Electric gas-summer-2013Electric gas-summer-2013
Electric gas-summer-2013
 
GIS for the Fire Service
GIS for the Fire ServiceGIS for the Fire Service
GIS for the Fire Service
 
ArcGIS10.2 Desktop Functionality Matrix
ArcGIS10.2 Desktop Functionality MatrixArcGIS10.2 Desktop Functionality Matrix
ArcGIS10.2 Desktop Functionality Matrix
 
How companies are achieving competitive advantage through analytics
How companies are achieving competitive advantage through analyticsHow companies are achieving competitive advantage through analytics
How companies are achieving competitive advantage through analytics
 
Forest Management with Esri
Forest Management with EsriForest Management with Esri
Forest Management with Esri
 
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...
Precision and Productivity for Utilities/Energy Field GPS/GIS Data Collection...
 
INIA- CISA: Análisis de las amenazas en la fauna silvestre
INIA- CISA: Análisis de las amenazas en la fauna silvestreINIA- CISA: Análisis de las amenazas en la fauna silvestre
INIA- CISA: Análisis de las amenazas en la fauna silvestre
 

Similar to Dealing with High Demand--Building high-capacity mapping applications

GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SC
GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SCGIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SC
GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SCJim Tochterman
 
Refactoring Web Services on AWS cloud (PaaS & SaaS)
Refactoring Web Services on AWS cloud (PaaS & SaaS)Refactoring Web Services on AWS cloud (PaaS & SaaS)
Refactoring Web Services on AWS cloud (PaaS & SaaS)IRJET Journal
 
Ppt on cloud computing
Ppt on cloud computingPpt on cloud computing
Ppt on cloud computingPradeep Bhatia
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Cloud Computing With AWS
Cloud Computing With AWSCloud Computing With AWS
Cloud Computing With AWSMunish Gupta
 
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy Steps
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy StepsAppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy Steps
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy StepsAppZero
 
ArcGIS Server System Architecture Memo
ArcGIS Server System Architecture MemoArcGIS Server System Architecture Memo
ArcGIS Server System Architecture Memotrent_merlyn
 
Dynamic resource allocation using virtual machines for cloud computing enviro...
Dynamic resource allocation using virtual machines for cloud computing enviro...Dynamic resource allocation using virtual machines for cloud computing enviro...
Dynamic resource allocation using virtual machines for cloud computing enviro...JPINFOTECH JAYAPRAKASH
 
Moving Windows Server Apps to the cloud in 3 Easy Steps
Moving Windows Server Apps to the cloud in 3 Easy StepsMoving Windows Server Apps to the cloud in 3 Easy Steps
Moving Windows Server Apps to the cloud in 3 Easy StepsAppZero
 
AWS ECS Workshop A Journey to Modern Applications
AWS ECS Workshop A Journey to Modern ApplicationsAWS ECS Workshop A Journey to Modern Applications
AWS ECS Workshop A Journey to Modern ApplicationsAmazon Web Services
 
APMWQ3D2S3 Modernizing legacy Java workloads.pdf
APMWQ3D2S3 Modernizing legacy Java workloads.pdfAPMWQ3D2S3 Modernizing legacy Java workloads.pdf
APMWQ3D2S3 Modernizing legacy Java workloads.pdfHemantBabtiwale
 
Serverless: Beyond Lambda Functions (V2)
Serverless: Beyond Lambda Functions (V2)Serverless: Beyond Lambda Functions (V2)
Serverless: Beyond Lambda Functions (V2)Srushith Repakula
 
Aws cloud infrastructure and cost estimation for angular site
Aws cloud infrastructure and cost estimation for angular siteAws cloud infrastructure and cost estimation for angular site
Aws cloud infrastructure and cost estimation for angular siteLe Kien Truc
 
Scaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloudScaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloudVladimir Ilic
 
Apache Hadoop India Summit 2011 talk "Making Hadoop Enterprise Ready with Am...
Apache Hadoop India Summit 2011 talk  "Making Hadoop Enterprise Ready with Am...Apache Hadoop India Summit 2011 talk  "Making Hadoop Enterprise Ready with Am...
Apache Hadoop India Summit 2011 talk "Making Hadoop Enterprise Ready with Am...Yahoo Developer Network
 
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...IEEEGLOBALSOFTTECHNOLOGIES
 

Similar to Dealing with High Demand--Building high-capacity mapping applications (20)

GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SC
GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SCGIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SC
GIS & Cloud Computing - GAASC 2010 Fall Summit - Florence, SC
 
Refactoring Web Services on AWS cloud (PaaS & SaaS)
Refactoring Web Services on AWS cloud (PaaS & SaaS)Refactoring Web Services on AWS cloud (PaaS & SaaS)
Refactoring Web Services on AWS cloud (PaaS & SaaS)
 
AWS Containers Day.pdf
AWS Containers Day.pdfAWS Containers Day.pdf
AWS Containers Day.pdf
 
Ppt on cloud computing
Ppt on cloud computingPpt on cloud computing
Ppt on cloud computing
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
Cloud computing03
Cloud computing03Cloud computing03
Cloud computing03
 
Compute@Scale
Compute@ScaleCompute@Scale
Compute@Scale
 
Cloud Computing With AWS
Cloud Computing With AWSCloud Computing With AWS
Cloud Computing With AWS
 
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy Steps
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy StepsAppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy Steps
AppZero & GoGrid: Moving Windows Server Apps to Cloud in 3 Easy Steps
 
Amazon EC2
Amazon EC2Amazon EC2
Amazon EC2
 
ArcGIS Server System Architecture Memo
ArcGIS Server System Architecture MemoArcGIS Server System Architecture Memo
ArcGIS Server System Architecture Memo
 
Dynamic resource allocation using virtual machines for cloud computing enviro...
Dynamic resource allocation using virtual machines for cloud computing enviro...Dynamic resource allocation using virtual machines for cloud computing enviro...
Dynamic resource allocation using virtual machines for cloud computing enviro...
 
Moving Windows Server Apps to the cloud in 3 Easy Steps
Moving Windows Server Apps to the cloud in 3 Easy StepsMoving Windows Server Apps to the cloud in 3 Easy Steps
Moving Windows Server Apps to the cloud in 3 Easy Steps
 
AWS ECS Workshop A Journey to Modern Applications
AWS ECS Workshop A Journey to Modern ApplicationsAWS ECS Workshop A Journey to Modern Applications
AWS ECS Workshop A Journey to Modern Applications
 
APMWQ3D2S3 Modernizing legacy Java workloads.pdf
APMWQ3D2S3 Modernizing legacy Java workloads.pdfAPMWQ3D2S3 Modernizing legacy Java workloads.pdf
APMWQ3D2S3 Modernizing legacy Java workloads.pdf
 
Serverless: Beyond Lambda Functions (V2)
Serverless: Beyond Lambda Functions (V2)Serverless: Beyond Lambda Functions (V2)
Serverless: Beyond Lambda Functions (V2)
 
Aws cloud infrastructure and cost estimation for angular site
Aws cloud infrastructure and cost estimation for angular siteAws cloud infrastructure and cost estimation for angular site
Aws cloud infrastructure and cost estimation for angular site
 
Scaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloudScaling drupal horizontally and in cloud
Scaling drupal horizontally and in cloud
 
Apache Hadoop India Summit 2011 talk "Making Hadoop Enterprise Ready with Am...
Apache Hadoop India Summit 2011 talk  "Making Hadoop Enterprise Ready with Am...Apache Hadoop India Summit 2011 talk  "Making Hadoop Enterprise Ready with Am...
Apache Hadoop India Summit 2011 talk "Making Hadoop Enterprise Ready with Am...
 
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...
JAVA 2013 IEEE CLOUDCOMPUTING PROJECT Dynamic resource allocation using virtu...
 

More from Esri

Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...
Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...
Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...Esri
 
Plataforma Smart City de Móstoles
Plataforma Smart City de MóstolesPlataforma Smart City de Móstoles
Plataforma Smart City de MóstolesEsri
 
ArcGIS Online para Organizaciones
ArcGIS Online para OrganizacionesArcGIS Online para Organizaciones
ArcGIS Online para OrganizacionesEsri
 
Molina de Segura se convierte en una smart city
Molina de Segura se convierte en una smart cityMolina de Segura se convierte en una smart city
Molina de Segura se convierte en una smart cityEsri
 
Portal for ArcGIS
Portal for ArcGISPortal for ArcGIS
Portal for ArcGISEsri
 
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime Data
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime DataGIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime Data
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime DataEsri
 
An Effective Tool for Drinking Water Protection
An Effective Tool for Drinking Water ProtectionAn Effective Tool for Drinking Water Protection
An Effective Tool for Drinking Water ProtectionEsri
 
GeoCollector for ArcPad
GeoCollector for ArcPadGeoCollector for ArcPad
GeoCollector for ArcPadEsri
 
GeoCollector for ArcGIS for Windows Mobile
GeoCollector for ArcGIS for Windows MobileGeoCollector for ArcGIS for Windows Mobile
GeoCollector for ArcGIS for Windows MobileEsri
 
Data Appliance for ArcGIS
Data Appliance for ArcGISData Appliance for ArcGIS
Data Appliance for ArcGISEsri
 
Esri and BlackBridge
Esri and BlackBridgeEsri and BlackBridge
Esri and BlackBridgeEsri
 
GeoPlanner for ArcGIS
GeoPlanner for ArcGISGeoPlanner for ArcGIS
GeoPlanner for ArcGISEsri
 
Esri and AccuWeather
Esri and AccuWeatherEsri and AccuWeather
Esri and AccuWeatherEsri
 
Esri and Airbus Defense & Space
Esri and Airbus Defense & SpaceEsri and Airbus Defense & Space
Esri and Airbus Defense & SpaceEsri
 
Esri US Data Fact Sheet
Esri US Data Fact SheetEsri US Data Fact Sheet
Esri US Data Fact SheetEsri
 
ArcGIS for Server on Microsoft Azure Jumpstart
ArcGIS for Server on Microsoft Azure JumpstartArcGIS for Server on Microsoft Azure Jumpstart
ArcGIS for Server on Microsoft Azure JumpstartEsri
 
ArcGIS for the Military--Maritime Operations
ArcGIS for the Military--Maritime OperationsArcGIS for the Military--Maritime Operations
ArcGIS for the Military--Maritime OperationsEsri
 
Esri Geoportal Server
Esri Geoportal ServerEsri Geoportal Server
Esri Geoportal ServerEsri
 
ArcGIS GeoEvent Extension for Server
ArcGIS GeoEvent Extension for ServerArcGIS GeoEvent Extension for Server
ArcGIS GeoEvent Extension for ServerEsri
 
The NATO Core Geographic Services System
The NATO Core Geographic Services SystemThe NATO Core Geographic Services System
The NATO Core Geographic Services SystemEsri
 

More from Esri (20)

Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...
Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...
Aena Aeropuerto Adolfo Suárez-Barajas crea potentes aplicaciones para sus cli...
 
Plataforma Smart City de Móstoles
Plataforma Smart City de MóstolesPlataforma Smart City de Móstoles
Plataforma Smart City de Móstoles
 
ArcGIS Online para Organizaciones
ArcGIS Online para OrganizacionesArcGIS Online para Organizaciones
ArcGIS Online para Organizaciones
 
Molina de Segura se convierte en una smart city
Molina de Segura se convierte en una smart cityMolina de Segura se convierte en una smart city
Molina de Segura se convierte en una smart city
 
Portal for ArcGIS
Portal for ArcGISPortal for ArcGIS
Portal for ArcGIS
 
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime Data
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime DataGIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime Data
GIS-Based Web Services Provide Rapid Analysis and Dissemination of Maritime Data
 
An Effective Tool for Drinking Water Protection
An Effective Tool for Drinking Water ProtectionAn Effective Tool for Drinking Water Protection
An Effective Tool for Drinking Water Protection
 
GeoCollector for ArcPad
GeoCollector for ArcPadGeoCollector for ArcPad
GeoCollector for ArcPad
 
GeoCollector for ArcGIS for Windows Mobile
GeoCollector for ArcGIS for Windows MobileGeoCollector for ArcGIS for Windows Mobile
GeoCollector for ArcGIS for Windows Mobile
 
Data Appliance for ArcGIS
Data Appliance for ArcGISData Appliance for ArcGIS
Data Appliance for ArcGIS
 
Esri and BlackBridge
Esri and BlackBridgeEsri and BlackBridge
Esri and BlackBridge
 
GeoPlanner for ArcGIS
GeoPlanner for ArcGISGeoPlanner for ArcGIS
GeoPlanner for ArcGIS
 
Esri and AccuWeather
Esri and AccuWeatherEsri and AccuWeather
Esri and AccuWeather
 
Esri and Airbus Defense & Space
Esri and Airbus Defense & SpaceEsri and Airbus Defense & Space
Esri and Airbus Defense & Space
 
Esri US Data Fact Sheet
Esri US Data Fact SheetEsri US Data Fact Sheet
Esri US Data Fact Sheet
 
ArcGIS for Server on Microsoft Azure Jumpstart
ArcGIS for Server on Microsoft Azure JumpstartArcGIS for Server on Microsoft Azure Jumpstart
ArcGIS for Server on Microsoft Azure Jumpstart
 
ArcGIS for the Military--Maritime Operations
ArcGIS for the Military--Maritime OperationsArcGIS for the Military--Maritime Operations
ArcGIS for the Military--Maritime Operations
 
Esri Geoportal Server
Esri Geoportal ServerEsri Geoportal Server
Esri Geoportal Server
 
ArcGIS GeoEvent Extension for Server
ArcGIS GeoEvent Extension for ServerArcGIS GeoEvent Extension for Server
ArcGIS GeoEvent Extension for Server
 
The NATO Core Geographic Services System
The NATO Core Geographic Services SystemThe NATO Core Geographic Services System
The NATO Core Geographic Services System
 

Recently uploaded

Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfAarwolf Industries LLC
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observabilityitnewsafrica
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsYoss Cohen
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...itnewsafrica
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxAna-Maria Mihalceanu
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesManik S Magar
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 

Recently uploaded (20)

Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdf
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platforms
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance Toolbox
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 

Dealing with High Demand--Building high-capacity mapping applications

  • 1. Dealing with High Demand Building high-capacity mapping applications By Keith Mann, Esri Writer A Review of Amazon EC2 The strategy for adding capacity to the wildfi re app uses Amazon Web Services (AWS)—specifically, Amazon Elastic Compute Cloud (EC2) (aws.amazon.com/ec2). Amazon describes EC2 as “a web service that provides resizable compute capacity in the cloud.” Essentially, various components of Amazon’s compute infrastruc- ture can be rented to rapidly build a high-capacity support system. The strategy also uses ArcGIS for Server to create and manage the GIS services for the application. Esri provides ArcGIS for Server as an Amazon Machine Image (AMI) running on Amazon EC2. The ArcGIS for Server on Amazon EC2 AMI includes 100 gigabytes of  The Public Information Map template can be configured to allow storage. These AMIs can be licensed in the same fashion that ArcGIS the user to add features to the map. for Server is licensed on a local machine. When you start an instance of ArcGIS for Server on Amazon EC2, I s your mapping application ready for the big time? Maybe a you choose the ArcGIS for Server AMI, the size and type of machine better way to ask this question is, how well will the computing it will run on, and other services and features such as Elastic Load infrastructure that supports your mapping application stand up Balancing and Auto Scaling. to a huge spike in demand? You can upload your data and application to the instance’s storage Wildfi res raging in Colorado in 2010 precipitated a real-life test area and configure them with the ArcGIS for Server instance so that for Esri. In response to the fi res, Esri published a public informa- you can publish services and add them to the mapping application. tion map (PIM) for wildfi res. The wildfi re app ran beautifully on a Detailed resources for accomplishing these tasks are listed in the single server machine and seemed to be handling the daily traffic online version of this article. with no problem until a major news organization provided a link to the map in one of its stories. Immediately, demand went through the roof, and the server exceeded its load capacity. It shut down, and the wildfi re app went dark. The application was quickly reborn, but not on the single server machine. Th is time, it was set up to run in the cloud. The second incarnation of the wildfi re app used cloud services to distribute demand across multiple servers. Additionally, the base structure for this type of system was established and configured so that server machines could be added or removed as needed. In other words, a scalable system for supporting high-capacity mapping applications was created. Th is system is now used for all Server Machine Esri disaster response and current events maps (esri.com/news/ maps/index.html). Th is article provides a brief, high-level view of the thought process File ArcGIS for Geodatabase Application Server used in building the infrastructure for a high-capacity mapping ap- plication. Although it’s certainly not the only way to do this, it is a tried-and-true method that allows incremental system design while  Spikes in demand from the Internet can quickly overload a single maintaining manual control over scalability. server machine setup. 38 au Spring 2012 esri.com
  • 2. Developer’s Corner  With two identical single server setups, one can function as the staging setup and the other Demand as the production setup. Staging Production Server Machine Server Machine File ArcGIS for File ArcGIS for Geodatabase Application Server Geodatabase Application Server The Single Server Setup The Staging Server and A common method for deploying a mapping Production Server Setup application is to put everything—the map- Another way to prepare for server overload the GIS server. Creating a custom AMI can ping application, the GIS server, and the situations is to make it easier and faster to take 20 minutes to an hour. Once it’s cre- data—on one machine. spin up a new instance of your mapping ated, you can generate new instances from Th is method is often used for internal ap- application if it goes down. To accom- the custom AMI very quickly—in approxi- plications because machine usage is either plish this, fi rst create a single server setup. mately 15 to 20 minutes. known or can be safely predicted. However, Conceptually, you can think of this as your Having a staging setup lets you test your when the application is exposed to the staging setup. Next, make a copy of your application and make edits before you Internet, it is more difficult to predict the staging setup and use the copy as your pro- deploy the production setup. If you want to maximum load on the server. duction setup. End users only access the re- add functionality to the application or make Sudden spikes in demand can quickly sources of the production setup. If demand changes to the data and services, you can do overload the processing capability of the overloads your production server, you make this without disturbing the end users who server machine and cause it to crash. During a new copy from the staging setup and use it are using the production setup. When you’re the resultant downtime, your customers to replace the crashed production setup. ready to deploy the new setup, just kill off lose access to the application, and you end On Amazon EC2, making a copy simply the production instance and replace it with up spending hours getting the server up and means starting a new instance from a the updated production instance. running, only to have it crash again as soon custom AMI. To create the custom AMI, However, this framework doesn’t help you as users discover its availability. complete the staging setup and save it as achieve the capacity needed to support large One way to combat spikes in demand is to an AMI. The custom AMI encapsulates your spikes in demand. To do that, you’ll need two use a server machine with more processing entire setup—the application, the data, and load-balanced production instances. power. The problem with this solution is that you end up paying for a server that is un- derutilized most of the time. Th is scenario is true whether you’re deploying your applica- tion on local infrastructure or in the cloud. Demand  A load balancing service can be used to distribute demand across the two production setups. Load Balancer Staging Production Production Server Machine Server Machine Server Machine File ArcGIS for File ArcGIS for File ArcGIS for Geodatabase Application Server Geodatabase Application Server Geodatabase Application Server esri.com Spring 2012 au 39
  • 3.  If demand begins to exceed the capacity Demand of the two production AMIs, another production AMI can be added to the load balancer. Load Balancer Staging Production Production Production Server Machine Server Machine Server Machine Server Machine File ArcGIS for File ArcGIS for File ArcGIS for File ArcGIS for Geodatabase Application Server Geodatabase Application Server Geodatabase Application Server Geodatabase Application Server Setting Up the Staging Server Multiple Staging Servers In this case, you make custom AMIs of and Load-Balanced, Multiple and Load-Balanced, Multiple the application server setup and the GIS Production Servers Production Servers Setup server setup, create two new instances of In this scenario, you use the custom AMI With most mapping applications, you’ll each, and load balance the two production created from the staging setup to generate want to make improvements, add func- application AMIs and the two GIS server two identical production instances. Next, tionality, or change the look and feel of the AMIs. Th is scenario provides scalability to you employ a load balancing service (called app on a regular basis. Changes to data and your application as well as your GIS server Elastic Load Balancing on Amazon EC2) services usually occur much less frequently. and allows you to work on either while re- that will distribute demand across the pro- You can take advantage of this phenomenon ducing the impact on your end users. Both duction instances. and make your high-capacity system more the application and the GIS server setups If something goes wrong with one of the efficient if you put the application on a dif- can be scaled up and down depending on production instances, the application con- ferent server from the GIS server and data. where the loads are greatest. tinues to work through the remaining pro- duction instance. Th is gives you time to start a new instance of the production instance and configure it with the load balancer. You can also add additional machines  Splitting the application and the GIS server onto their own server setups Demand to the load balancing service. If demand improves scalability as well as updatability. increases to a critical threshold—say, 80 percent on both production servers—you can start a new production instance from Load Balancer the custom AMI and add it to the load bal- ancer. When demand subsides to normal levels, you can kill off the third production Staging Application Production Application Production Application Server Machine Server Machine Server Machine instance. In this scenario, you are achieving a level Application Application Application of scalability that allows you to manually respond to spikes in demand that may affect the performance or viability of your map- Demand ping application. While the load balancer can be used to monitor whether the applica- tion is responding properly, it cannot check the fine-grained functionality of ArcGIS Load Balancer services. To more closely monitor your ser- vices, use ServiceMonitor, a script provided by Esri that checks each service periodi- Staging GIS Production GIS Production GIS Server Machine Server Machine Server Machine cally and makes sure it is responding. You File can download the ServiceMonitor script at Geodatabase ArcGIS for Server File Geodatabase ArcGIS for Server File Geodatabase ArcGIS for Server arcscripts.esri.com/details.asp?dbid=15335. 40 au Spring 2012 esri.com
  • 4. Developer’s Corner Including an Enterprise Geodatabase Server for Feature Editing Some mapping applications allow the end instances in different zones within the same instances exceeds tolerances, another pro- user to perform feature editing such as region, you can have them all behind the duction instance can be manually or auto- adding a point, line, or polygon to the map. same load balancer. matically added to the load balancer. To have consistency on the production serv- If you anticipate frequent changes to the ers running in the load balancer, editing Conclusion application, you may find it useful to put the must be done in an ArcSDE database. The To support a high-capacity mapping appli- application server and GIS server on sepa- ArcSDE database should reside on a sepa- cation, you will need a scalable system of rate tiers of the system. Likewise, if your ap- rate instance from the production instances. identical setups, each with a GIS server; an plication includes the ability to add or edit These features are stored in an enterprise application; and, possibly, data server ma- map features, you should put the required geodatabase. chines. If you want to maintain your system enterprise geodatabase instance on a sepa- Esri also provides an enterprise geodata- in a manner that minimally impacts your rate tier. base AMI. Data for editable feature services, end users, consider creating a staging AMI These concepts and suggestions are not is stored in an instance created from this that you can work on while the production the only way to use Amazon EC2 to bring AMI. After putting the data in the enterprise AMIs serve your end users. Ideally, there high capacity to your mapping application, geodatabase, creating the feature service, should be two load-balanced production in- but you may find that this model is a prac- and configuring the service with the ap- stances in the base structure of the system tical approach to maintaining fine-grained plication, you make a custom AMI of the so that if one fails, the application remains control over how and when your system staging data server setup and launch new viable. If demand on both production scales. production instances. In this example, one staging data server and only one production data server are used to support the application. If possi- ble, use two production data servers, each with a mirrored enterprise geodatabase for  If the mapping application includes a feature editing capability, the data for those features Demand redundancy. However, currently, this is not should reside in an enterprise geodatabase. a simple, out-of-the-box solution provided with the Esri enterprise geodatabase AMI— it requires a strong understanding of enter- Load Balancer prise database management. Where to Go from Here Staging Application Production Application Production Application Server Machine Server Machine Server Machine Amazon offers an Auto Scaling service that you can configure with the load balancing Application Application Application service to automatically spin up new produc- tion instances when load thresholds reach a specified level. However, you may find that Demand maintaining manual control over scaling of your production instances is preferable. Amazon’s cloud infrastructure and data Load Balancer centers are available in a number of regions around the world. Each region has multi- ple Availability Zones, designed to protect Staging GIS Production GIS Production GIS Server Machine your instances from failure. Instances can Server Machine Server Machine be spread across Availability Zones within File Geodatabase ArcGIS for Server File Geodatabase ArcGIS for Server File ArcGIS for Geodatabase Server a Region so that if one data center goes down, the other instances will continue to function. The Amazon EC2 Service Level Staging Data Production Data Agreement commitment is to provide 99.95 Server Machine Server Machine percent availability for each Amazon EC2 Enterprise Geodatabase Enterprise Geodatabase Region. As long as you create production esri.com Spring 2012 au 41