Transcript
Page 1: Cost effective azure

Cost Effective Coding In Windows Azure

Page 2: Cost effective azure
Page 3: Cost effective azure
Page 4: Cost effective azure

TIME

IT C

APA

CIT

Y

Actual

Load

AllocatedIT-capacities

Overcapacity

Undercapacity

Fixed cost ofIT-capacities

LoadForecast

Investment

Page 5: Cost effective azure

Actual Load

Allocated IT

capacities

Reduction of initial

investments

Reduction of overcapacity

No undercapacity

Possible reduction of IT-capacities

in case of reduced load

IT C

APA

CIT

Y

Load Forecast

TIME

Page 6: Cost effective azure
Page 7: Cost effective azure

Windows Azure SQL Azure Azure AppFabric

the services used

+ the data transfer consumed

DataCenter7. ingressOutside the

datacenter

1. Compute 2. Storage3. Storage

Transactions

5. Access

Control

Transactions

6. Service Bus

Connections

8. egress

4. DB

Page 8: Cost effective azure
Page 9: Cost effective azure

• Licenses

• OS License

• SQL Server License

• Hardware investment

• Server

• Disks

• Racks

• Switches

• UPS

• Network cables

• Hardware maintanance

• Power consumption of hardware

• Server

• Disk

• Racks

• Swithes

• Insurance of hardware

• Insurance on server room

• Server room

• Rent

• Cooling

• Lighting

• Cleaning

• Smoke detectors

• Tapes for backup

• Salary for admin people

• Install hardware

• Maintain hardware

• Apply OS patches

• Backup/Restore operations

• Firewall/DMZ configuration

• Clear logfiles

• Taxes on Salaries

• Time spent on procurement cycle of

hardware / Licenses

• ...

Page 10: Cost effective azure
Page 11: Cost effective azure
Page 12: Cost effective azure
Page 13: Cost effective azure
Page 14: Cost effective azure

Compute

Instance SizeCPU Memory

Instance

Storage

I/O

Performance

Small 1.6 GHz 1.75 GB 225 GB Moderate

Medium 2 x 1.6 GHz 3.5 GB 490 GB High

Large 4 x 1.6 GHz 7 GB 1,000 GB High

Extra large 8 x 1.6 GHz 14 GB 2,040 GB High

Page 15: Cost effective azure
Page 16: Cost effective azure

Instance hours are accumulated by each hosted service that contains a deployed project, regardless if the service is running or suspended.

Page 17: Cost effective azure

When the box is gray,

you’re okay.

When the box is blue

a bill is due.

Page 18: Cost effective azure
Page 19: Cost effective azure
Page 20: Cost effective azure
Page 21: Cost effective azure
Page 22: Cost effective azure
Page 23: Cost effective azure
Page 24: Cost effective azure
Page 25: Cost effective azure
Page 26: Cost effective azure
Page 27: Cost effective azure
Page 28: Cost effective azure
Page 29: Cost effective azure

$9.99$49.95 $99.99 $199.98 $299.97 $399.96 $499.95

Page 30: Cost effective azure
Page 31: Cost effective azure
Page 32: Cost effective azure
Page 33: Cost effective azure
Page 34: Cost effective azure

if (Session["culture"].ToString() == "en-US") {// .. set to English ...

}

if (Session["culture"].ToString() == "nl-BE") {// .. set to Dutch ...

}

string culture = Session["culture"].ToString();if (culture == "en-US") {

// .. set to English ...}

if (culture == "nl-BE") {// .. set to Dutch ...

}

Page 35: Cost effective azure
Page 36: Cost effective azure
Page 37: Cost effective azure
Page 38: Cost effective azure

Top Related