top 5 things to know about sql azure for developers

31
Top 5 Things to Know @ SQL Azure By Ike Ellis http://www.ellisteam.net http://www.develop.com http://ellisteam.blogspot.co m @ellisteam1

Upload: ike-ellis

Post on 15-Nov-2014

3.419 views

Category:

Technology


3 download

DESCRIPTION

Databases in the cloud are a brave new world. This presentation will show up the issues with migrating your application to SQL Azure and how to address them.

TRANSCRIPT

Page 1: Top 5 things to know about sql azure for developers

Top 5 Things to Know @SQL Azure

By Ike Ellishttp://www.ellisteam.nethttp://www.develop.comhttp://ellisteam.blogspot.com@ellisteam1

Page 2: Top 5 things to know about sql azure for developers

2

Page 3: Top 5 things to know about sql azure for developers

3

Page 4: Top 5 things to know about sql azure for developers

4

Page 5: Top 5 things to know about sql azure for developers

5

Page 6: Top 5 things to know about sql azure for developers

6

Page 7: Top 5 things to know about sql azure for developers

7

Page 8: Top 5 things to know about sql azure for developers

8

Page 9: Top 5 things to know about sql azure for developers

9

Page 10: Top 5 things to know about sql azure for developers

10

Page 11: Top 5 things to know about sql azure for developers

11

Page 12: Top 5 things to know about sql azure for developers

12

Page 13: Top 5 things to know about sql azure for developers

13

Dragon #1: The ConnectionString

Page 14: Top 5 things to know about sql azure for developers

14

Quick Demo: How to Sign Up

• Free Accounts– BizSpark– MSDN Subscription– 30 day trial

• Bing SQL Azure 30 day trial….there are coupons and instructions.

• Look on the SQL Azure Team Blog– Remember: Microsoft wants you to use this, there’s a way to

try it for free…

Page 15: Top 5 things to know about sql azure for developers

15

Your App

Change Connection String

Your SQL Server

SQL Azure

Page 16: Top 5 things to know about sql azure for developers

16

5 Things Make Up a Connection String

• What are they?

Page 17: Top 5 things to know about sql azure for developers

17

5 Things Make Up a Connection String

• What are they?– UserName– Password– Database(Catalog)– ServerName– ProviderName

Page 18: Top 5 things to know about sql azure for developers

18

#1 ConnectionString

<add name="FlashcardEntities" connectionString="metadata=res://*/Models.FlashcardData.csdl|res://*/Models.FlashcardData.ssdl|res://*/Models.FlashcardData.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=etnejn2aev.database.windows.net;Initial Catalog=flashcards;Integrated Security=False;User ID=***(username@servername);Password=*******;MultipleActiveResultSets=True;Encrypt=True(negotiated);TrustServerCertificate=False&quot;" providerName="System.Data.EntityClient" />

Page 19: Top 5 things to know about sql azure for developers

19

Connection Providers

• Use ADO.NET, ODBC, PHP (NOT OLE DB)– Client libraries pre-installed in Azure roles– Support for ASP.NET controls

• Clients connect directly to a database– Cannot hop across DBs (no USE)– May need to include <login>@<server>– Use familiar tools (sqlcmd, osql, SSMS, etc)– Use connection pooling for efficiency

• SSMS 2008 R2 can connect – http://blogs.msdn.com/ssds/archive/2009/11/11/9921041.aspx

• SSRS, SSIS, SSAS can all connect to SQL Azure using the right provider.

Page 20: Top 5 things to know about sql azure for developers

20

Typical ADO.NET Connection.Open()*Courtesy of BartR – Microsofthttp://blogs.msdn.com/b/bartr/archive/2010/06/18/sql-azure-connection-retry.aspx?utm_source=feedburner&utm_medium=twitter&utm_campaign=Feed:+Microsoft/MSDN-Blogs+(MSDN+Blogs)

try

{   

using (SqlConnection conn = new SqlConnection(sqlConnectionString))   

{       

using (SqlCommand cmd = new SqlCommand(sqlStatement, conn))        {           

conn.Open();

using (SqlDataReader dr =cmd.ExecuteReader())           

{               

while (dr.Read())               

{               

}           

}

catch (SqlException ex)

SxpLog.WriteSqlException(ex, "some", "other", "data");

}

Page 21: Top 5 things to know about sql azure for developers

21

New Connection.Open()*Courtesy of BartR – Microsofthttp://blogs.msdn.com/b/bartr/archive/2010/06/18/sql-azure-connection-retry.aspx?utm_source=feedburner&utm_medium=twitter&utm_campaign=Feed:+Microsoft/MSDN-Blogs+(MSDN+Blogs)

string sqlContext = string.empty;

try{   

using (SqlConnection conn = new SqlConnection(sqlConnectionString))   

{       

using (SqlCommand cmd = new SqlCommand(sqlStatement, conn))        {           

sqlContext = GetSqlContextInfo(conn);

            using (SqlDataReader dr =cmd.ExecuteReader())           

{               

while (dr.Read())               

{               

}           

}       

}

catch (SqlException ex)

SxpLog.WriteSqlException(ex, sqlContext, "some", "other", "data");

}

Page 22: Top 5 things to know about sql azure for developers

22

GetSqlContextInfo

• http://blogs.msdn.com/b/bartr/archive/2010/06/18/sql-azure-connection-retry.aspx?utm_source=feedburner&utm_medium=twitter&utm_campaign=Feed:+Microsoft/MSDN-Blogs+(MSDN+Blogs)

Page 23: Top 5 things to know about sql azure for developers

23

Dragon #2: Some New Errors

1. 40550 - Session has been terminated because it has acquired too many locks. Try reading or modifying fewer rows in a single transaction. (Greater than 1,000,000 locks)

2. 40551 - Session has been terminated because of excessive TempDB Usage(TempDB is only allowed to be 5GB in size)

3. 40552 - Session used too much of the transaction log. try modifying fewer rows in a single transaction. (Transaction consuming excessive log resources are terminated. The max permitted log size for a single transaction is 1GB)

4. 40544 - Database reached it's max size. Switched to read-only

5. 40553 - Session is terminated because of excessive memory usage. (Where there is memory contention, sessions consuming greater than 16MB for more than 20 seconds are terminated in the descending order of time the resource has been held)

6. 40549 - Session is terminated because of a long running transaction (SQL Azure kills all transactions after 24 hours.)

7. 40501 The service is currently busy. Retry the request after 10 seconds. Code: %d (SQL Azure might terminate the transactions and disconnect the sessions when the CPU utilization, input/output I/O latency, and the number of busy workers exceed thresholds.

Page 24: Top 5 things to know about sql azure for developers

24

Another Reason We Need Retry Code = Disaster Recovery/Database Replicas

Replica 1

Replica 2

Replica 3

DB

Single Logical Database

Multiple Physical Replicas

Single Primary

Page 25: Top 5 things to know about sql azure for developers

25

Logical/Physical Databases/Servers

Page 26: Top 5 things to know about sql azure for developers

26

Dragon #3: Tooling

• SQL Azure Database Manager– Silverlight Tool

• SSMS 2008 R2– Standard Tool

Page 27: Top 5 things to know about sql azure for developers

27

Dragon #4: Database Migration

• SSIS• BCP• SSMS – Generate Scripts• DEMO: SQL Azure Migration Wizard

Page 28: Top 5 things to know about sql azure for developers

28

Dragon #5: Performance Tuning

• Let’s get this out of the way – What we don’t have:• no sql error log• no sql profiler• no pssdiag• no bpa (best practices analyzer)• no xevent• no server side network capture• no mps reports(microsoft product support reports)• Only some DMVs

Page 29: Top 5 things to know about sql azure for developers

29

SQL Azure Performance Guide

1) Missing Indexes or better indexes

1) Use DMVs

2) Use Query Plans

2) Covering indexes for the WHERE clause

3) Can sorting be done on the client?

4) Minimize round trips

5) Limit records (paging)

6) Use Connection Pooling (open connection late, close them early)

7) Retry Logic (wait 10 seconds and then retry)

8) Catch errors and understand that when azure throws an error, the tran rollback

9) Caching and batching - evaluate caching and batching to limit round-trips to the server

10) avoid latency - choose a data center nearest to your location

11) Trace connections - traced connections using context_info() to troubleshoot connectivity issues

12) CALL SUPPORT

Page 30: Top 5 things to know about sql azure for developers

30

What I Didn’t Cover, But You Might Want to Research

• Pricing• Included/Excluded Features• Product Roadmap• SQL Azure Reporting

• Backup/Restore Options• SQL Azure Data Sync• SQL Azure Odata• Future Differences Between Editions

Page 31: Top 5 things to know about sql azure for developers

31

Good Resources

• Inside SQL Azure – Kalen Delaney– http://social.technet.microsoft.com/wiki/contents/articles/inside-

sql-azure.aspx

• SQL Azure & Entity Framework – Julie Lerman– http://msdn.microsoft.com/en-us/magazine/gg309181.aspx– Doesn’t cover the retry issue.

• SQL Azure Team Blog & Twitter– http://blogs.msdn.com/b/sqlazure/– Twitter: @sqlazure

• My Site– http://www.ellisteam.net– http://ellisteam.blogspot.com– Twitter: @EllisTeam1