optimizing your cloud applications in rightscale

33
Optimizing Your Cloud Applications in RightScale Rafael H. Saavedra - VP Engineering, RightScale June 8 th , 2011

Upload: rightscale

Post on 20-Aug-2015

750 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Optimizing Your Cloud Applications in RightScale

1

Optimizing Your Cloud Applications in RightScaleRafael H. Saavedra - VP Engineering, RightScale

June 8th, 2011

Page 2: Optimizing Your Cloud Applications in RightScale

2

Real Cloud Experience. Shared.

# 2

• Introduction• 3-tier application architecture• Vertical & horizontal scaling• RightScale monitoring and cluster graphs• New Relic RPM• Support for optimizing DB performance• Miscellaneous

Agenda

Page 3: Optimizing Your Cloud Applications in RightScale

3

Real Cloud Experience. Shared.

# 3

• Multi-tenancy

• Shared resource pooling

• Geo-distribution and ubiquitous network access

• Service oriented

• Dynamic resource provisioning

• Self-organizing

• Utility based pricing

Cloud computing characteristics

Page 4: Optimizing Your Cloud Applications in RightScale

4

Real Cloud Experience. Shared.

# 4

• No upfront investment

• Lowering operating costs

• Highly scalable

• Easy access

• Reduces business risk and maintenance costs

Cloud computing advantages

Page 5: Optimizing Your Cloud Applications in RightScale

5

Real Cloud Experience. Shared.

# 5

3-tier application architecture• Load balancers• A farm of application servers• Master-slave

Page 6: Optimizing Your Cloud Applications in RightScale

6

Real Cloud Experience. Shared.

# 6

• Instance size (vertical scaling)

• Instance autoscaling (horizontal scaling)• Server arrays

• RightScale support for performance optimization• ServerTemplates are configured to capture performance data• Collectd RightScripts

• Hardware & OS monitoring data• Specialized plugins – MySQL, HAProxy, Apache, NgInx, IIS, etc

• Monitoring graphs: individual, cluster, stacked, heat maps• Alerts & escalations

• New Relic RPM

Cloud performance optimization

Page 7: Optimizing Your Cloud Applications in RightScale

7

Real Cloud Experience. Shared.

# 7

• Compute units vs memory vs cost

Scaling up – spectrum of instance sizes

0.0 5.0 10.0 15.0 20.0 25.0 30.0 35.0 40.00.5

5.0

50.0

500.0

t1.micro

m1.small

m1.large m1.xlarge

m2.xlarge

m2.2xlarge

m2.4xlarge

c1.medium

c1.xlargecc1/cg1.4xlarge

Compute Units

Mem

ory

(G

B)

High Performance Computing

Test & Dev

Scalable Applications

Page 8: Optimizing Your Cloud Applications in RightScale

8

Real Cloud Experience. Shared.

# 8

Server arrays provide horizontal scaling

Page 9: Optimizing Your Cloud Applications in RightScale

9

Real Cloud Experience. Shared.

# 9

• The array scales up or down based on performance votes• Tags allow scaling on an arbitrary decision set• Decision threshold controls reaction time• Sleep time allows new resources to have an impact• Scaling can be time dependent• Detailed setup instructions: http://bit.ly/c1oLr2

• Fast response to changes in load conditions using alerts

• Allocation of servers to availability zones based on weights

• Deployment-based so configuration is consistent

• Arrays can be pre-scaled to support anticipated demand

Server arrays provide horizontal scaling

Page 10: Optimizing Your Cloud Applications in RightScale

10

Real Cloud Experience. Shared.

# 10

Cluster monitoring• Individual graphs

• Good for a dozen servers• Displays all standard graphs with full detail

• Stacked graphs• Displays the contribution of many servers to a total• Great to see the sum and variability of activity in a cluster• Difficult to make out individual servers• Examples: requests/sec, cpu busy cycles, I/O bytes/sec

• Heat maps• Displays a bar for each server• Great to see uneven distribution across servers• Great to quickly spot performance problems across many servers• Difficult to read absolute values or see the total cluster activity

Page 11: Optimizing Your Cloud Applications in RightScale

11

Real Cloud Experience. Shared.

# 11

Cluster monitoring• Current cluster monitoring: one graph per server

Page 12: Optimizing Your Cloud Applications in RightScale

12

Real Cloud Experience. Shared.

# 12

Stacked graphs• Each color band shows contribution of one server• Servers are stacked on top of one another

Page 13: Optimizing Your Cloud Applications in RightScale

13

Real Cloud Experience. Shared.

# 13

Heat maps• Each horizontal strip shows one server• The color shows how “hot” the server is running

Page 14: Optimizing Your Cloud Applications in RightScale

14

Real Cloud Experience. Shared.

# 14

Heat map with 100 servers

Page 15: Optimizing Your Cloud Applications in RightScale

15

Real Cloud Experience. Shared.

# 15

Stacked graph of the same 100 servers

Page 16: Optimizing Your Cloud Applications in RightScale

16

Real Cloud Experience. Shared.

# 16

Cluster monitoring architecture

• Architecture• Monitoring front-end servers

pull data from storage servers• Up to 100 servers on one graph

(to be increased)

your servers

monitoringstorageservers

monitoringfront-endservers

Page 17: Optimizing Your Cloud Applications in RightScale

17

Real Cloud Experience. Shared.

# 17

• Real-Time App Performance Analytics

• Supports Ruby, PHP, Java & .Net

• SQL & NoSQL performance

• Web transaction tracing

• Performance notifications

• Availability monitoring

• Scalability analysis

New Relic RPM

Page 18: Optimizing Your Cloud Applications in RightScale

18

Real Cloud Experience. Shared.

# 18

New Relic RPM• Direct access from RightScale dashboard

Page 19: Optimizing Your Cloud Applications in RightScale

19

Real Cloud Experience. Shared.

# 19

New Relic RPM• Historical statistics over a period of time

Page 20: Optimizing Your Cloud Applications in RightScale

20

Real Cloud Experience. Shared.

# 20

New Relic RPM• Distribution of the most time consuming requests

Page 21: Optimizing Your Cloud Applications in RightScale

21

Real Cloud Experience. Shared.

# 21

New Relic RPM• Statistics about response times from different countries

Page 22: Optimizing Your Cloud Applications in RightScale

22

Real Cloud Experience. Shared.

# 22

New Relic RPM• Detailed response times by browser

Page 23: Optimizing Your Cloud Applications in RightScale

23

Real Cloud Experience. Shared.

# 23

• An expensive query

• The N+1 query problem

• Finding patterns in similar requests

New Relic RPM – 3 Examples

Page 24: Optimizing Your Cloud Applications in RightScale

24

Real Cloud Experience. Shared.

# 24

Optimizing DB performance• RightScale MySQL ServerTemplates

• Configuration files tailored to instance size• innodb_buffer_pool_size• key_buffer_size• thread_size• sort_buffer_size

• The never ending task of identifying current bottlenecks• Disk seeks• Performance of disk operations• Scale up when working set cannot fit in memory – avoid active swapping• Constant monitoring of performance graphs, logs and query

• Schema considerations

Page 25: Optimizing Your Cloud Applications in RightScale

25

Real Cloud Experience. Shared.

# 25

Schema considerations• Lookups need to be indexed

• Sorting requires an index

• Joins need to be done on indices• Become slower as tables grow

• Compounded indices should be used consistently

• Do not abuse indices• Each index requires a disk write

• Compact tables if they become fragmented• Deleted rows do not remove the corresponding index entries

Page 26: Optimizing Your Cloud Applications in RightScale

26

Real Cloud Experience. Shared.

# 26

Monitoring DB performance• Standard collectd statistics

• User vs wait time (disk operations)• Performance of disk operations• Scale up when working set cannot fit in memory

• MySQL collectd plugin• Monitor INSERT, SELECT, UPDATE operations• The breakdown of read operations can indicate missing indices

• Monitoring /var/log/mysql-slow.log file• Identify slow queries

• Use MySQL EXPLAIN command to identify query plan

Page 27: Optimizing Your Cloud Applications in RightScale

27

Real Cloud Experience. Shared.

# 27

MySQL Collectd Plugin• Uses MySQL SHOW STATUS command to collect statistics• A large set of counters that are divided into 10 categories

• Connections• IO Requests• Select Rates• Read Rates• Key Rates• Commands Rates• Query Cache• Tables• Memory• Misc.

Page 28: Optimizing Your Cloud Applications in RightScale

28

Real Cloud Experience. Shared.

# 28

MySQL Collectd Plugin• Uses MySQL SHOW STATUS command to collect statistics

Page 29: Optimizing Your Cloud Applications in RightScale

29

Real Cloud Experience. Shared.

# 29

Mysql-slow.log & explain command# Time: 101006 23:30:11

# User@Host: prod[prod] @ domU-12-31-39-0F-D0-C1.compute-1.internal [10.193.211.47]

# Query_time: 7 Lock_time: 0 Rows_sent: 1 Rows_examined: 19785

SELECT * FROM `ec2_elastic_ips` WHERE (`ec2_elastic_ips`.ec2_instance_id = 6810144) LIMIT 1;

mysql> explain select * FROM `ec2_elastic_ips` WHERE (`ec2_elastic_ips`.ec2_instance_id = 6810144) LIMIT 1 \G

*************************** 1. row *************************** id: 1 select_type: SIMPLE table: ec2_elastic_ips type: ALLpossible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 33332 Extra: Using where1 row in set (0.00 sec)

Page 30: Optimizing Your Cloud Applications in RightScale

30

Real Cloud Experience. Shared.

# 30

MySQL performance depends on locality• Wait time should be minimum when working set fits in memory• Performance degrades once wait time is significant

user time dominates

wait time insignificant

Page 31: Optimizing Your Cloud Applications in RightScale

31

Real Cloud Experience. Shared.

# 31

MySQL reads graphs• Read-random-next represents a table scan• Read-next represents an index scan

Page 32: Optimizing Your Cloud Applications in RightScale

32

Real Cloud Experience. Shared.

# 32

Misc load testing using httperf• RightScale provides ServerTemplates in the marketplace

• https://my.rightscale.com/library/server_templates/Httperf-Load-Tester-11H1/18316

• Tutorial on httperf setup and configuration• http://support.rightscale.com/03-Tutorials/02-AWS/E2E_Examples/E2E_Gaming_Deployment/Adding_Httperf_Load_Tester

Page 33: Optimizing Your Cloud Applications in RightScale

33

Questions?

Rafael Saavedra - VP Engineering, RightScale

June 8th, 2011