Presentation is loading. Please wait.

Presentation is loading. Please wait.

Intro to SSB SQL Server 2005 Service Broker Brian Jackson Microsoft Consulting Services.

Similar presentations


Presentation on theme: "Intro to SSB SQL Server 2005 Service Broker Brian Jackson Microsoft Consulting Services."— Presentation transcript:

1 Intro to SSB SQL Server 2005 Service Broker Brian Jackson Microsoft Consulting Services

2 Agenda What is SSB? What is SSB? Why Add Messaging to the Database? Why Add Messaging to the Database? Key Concepts Key Concepts Usage Scenarios Usage Scenarios Demo Demo Architectural Positioning Architectural Positioning SSB and MSMQ SSB and MSMQ SSB and BizTalk SSB and BizTalk SSB and Indigo SSB and Indigo Questions Questions

3 What Is SSB? SQL Server 2005 Service Broker SQL Server 2005 Service Broker Allows internal or external processes to send and receive guaranteed, asynchronous messages using extensions to Transact-SQL Data Manipulation Language (DML) Allows internal or external processes to send and receive guaranteed, asynchronous messages using extensions to Transact-SQL Data Manipulation Language (DML) In short: Asynchronous messaging technology built directly into SQL Server 2005 In short: Asynchronous messaging technology built directly into SQL Server 2005

4 Why Add Messaging to the Database? To address reality: To address reality: Lots of customers use the database as a message queue already Lots of customers use the database as a message queue already The hard problems in messaging are difficult to implement correctly The hard problems in messaging are difficult to implement correctly SSB eliminates the need for customers to create custom solutions for SQL Server based message queuing SSB eliminates the need for customers to create custom solutions for SQL Server based message queuing The queue handling code built into the database kernel handles the locking, ordering, and multithreading issues associated with most home- grown database queues The queue handling code built into the database kernel handles the locking, ordering, and multithreading issues associated with most home- grown database queues

5 Why Add Messaging to the Database? To take advantage of transactional support in the DBMS To take advantage of transactional support in the DBMS Service Broker also supports only transactional messaging Service Broker also supports only transactional messaging Transactional queuing technologies outside the DBMS (e.g., MSMQ) require 2 phase commit transactions via the DTC Transactional queuing technologies outside the DBMS (e.g., MSMQ) require 2 phase commit transactions via the DTC To integrate backup, recovery and administration with SQL server To integrate backup, recovery and administration with SQL server To provide near real time failover via database mirroring To provide near real time failover via database mirroring

6 Key Concepts Service MessageType Queue MessageType MessageType MessageType Contract Contract Service Conversation

7 Key Concepts Service Service A name for a specific task or set of tasks A name for a specific task or set of tasks Messages are sent to services and stored in the queue associated with the service Messages are sent to services and stored in the queue associated with the service Service name used to route messages, deliver messages to the correct queue within a database, and enforce the contract for a conversation Service name used to route messages, deliver messages to the correct queue within a database, and enforce the contract for a conversation

8 Key Concepts Service Service Creation syntax: CREATE SERVICE [TestService] AUTHORIZATION [dbo] ON QUEUE [TestQueue] ([//Contract1],[Contract2]) Creation syntax: CREATE SERVICE [TestService] AUTHORIZATION [dbo] ON QUEUE [TestQueue] ([//Contract1],[Contract2]) Specifies name, owner, associated queue name, and optionally the contracts on which the service can receive messages Specifies name, owner, associated queue name, and optionally the contracts on which the service can receive messages If no contracts are specified, the service can only initiate messages If no contracts are specified, the service can only initiate messages

9 Key Concepts Queue Queue A named container for holding messages while they await processing A named container for holding messages while they await processing Provides loose coupling between sender and receiver Provides loose coupling between sender and receiver May or may not have a service program associated with it May or may not have a service program associated with it

10 Key Concepts Queue Queue Creation syntax Creation syntax CREATE QUEUE ExpenseQueue WITH STATUS=ON, WITH STATUS=ON, ACTIVATION ( ACTIVATION ( PROCEDURE_NAME = expense_procedure, PROCEDURE_NAME = expense_procedure, MAX_QUEUE_READERS = 5, MAX_QUEUE_READERS = 5, EXECUTE AS 'ExpenseUser' ) ; EXECUTE AS 'ExpenseUser' ) ;

11 Key Concepts Service Program Service Program Any program that sends or receives messages via SSB Any program that sends or receives messages via SSB Can be a T-SQL stored procedure, CLR stored procedure, or external program that is activated when the first message arrives in the queue Can be a T-SQL stored procedure, CLR stored procedure, or external program that is activated when the first message arrives in the queue As number of messages grows, additional instances of activated service programs may be created, up to the number specified in MAX_QUEUE_READERS As number of messages grows, additional instances of activated service programs may be created, up to the number specified in MAX_QUEUE_READERS Note: the external activator is not available in the current public beta (Yukon Beta 2) Note: the external activator is not available in the current public beta (Yukon Beta 2)

12 Key Concepts Contract Contract Defines the message types used in a conversation Defines the message types used in a conversation Determines which side of the conversation can send messages of that type Determines which side of the conversation can send messages of that type Each conversation follows a contract that the initiating service specifies when the conversation begins Each conversation follows a contract that the initiating service specifies when the conversation begins Both sides of a conversation must define the same contract Both sides of a conversation must define the same contract

13 Key Concepts Contract Contract Creation syntax Creation syntax CREATE CONTRACT [//ContractName] ( [//MessageTypeOne] SENT BY INITIATOR, [// MessageTypeTwo] SENT BY TARGET, [// MessageTypeThree] SENT BY ANY ) ; Sent by Sent by Initiator: the endpoint that starts a conversation with BEGIN DIALOG CONVERSATION Initiator: the endpoint that starts a conversation with BEGIN DIALOG CONVERSATION Target: the dialog endpoint that accepts a conversation that was started by another service Target: the dialog endpoint that accepts a conversation that was started by another service Any: messages of this type can be sent by both the initiator and the target Any: messages of this type can be sent by both the initiator and the target

14 Key Concepts Message Type Message Type A named definition of a format for messages exchanged between services A named definition of a format for messages exchanged between services Persisted in the database where the message type is created. Persisted in the database where the message type is created. Identical message type created in each database that participates in a conversation Identical message type created in each database that participates in a conversation 4 validation options for message type instances: 4 validation options for message type instances: NONE NONE EMPTY EMPTY WELL_FORMED_XML WELL_FORMED_XML VALID_XML WITH SCHEMA COLLECTION VALID_XML WITH SCHEMA COLLECTION

15 Key Concepts Message types Message types Creation syntax for message type with schema validation: Creation syntax for message type with schema validation: CREATE XML SCHEMA COLLECTION SampleSchemaCollection AS N' N' <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" …schema definition omitted …’ CREATE MESSAGE TYPE [//SampleSchema] [//SampleSchema] VALIDATION = VALID_XML WITH SCHEMA COLLECTION SampleSchemaCollection VALIDATION = VALID_XML WITH SCHEMA COLLECTION SampleSchemaCollection

16 Key Concepts Dialog / Conversation Dialog / Conversation Synonymous Synonymous At one point, SSB included a “Monolog” abstraction, but not currently At one point, SSB included a “Monolog” abstraction, but not currently Conversations—not messages—are the messaging primitive in SSB Conversations—not messages—are the messaging primitive in SSB Any program (including a service program) that has access to SQL Server can create a conversation Any program (including a service program) that has access to SQL Server can create a conversation An initiating service must begin a conversation with the target service before sending a message to the target service An initiating service must begin a conversation with the target service before sending a message to the target service Conversations are the unit of message correlation and ordering Conversations are the unit of message correlation and ordering

17 Key Concepts Dialog / Conversation Dialog / Conversation Initiating a dialog Initiating a dialog DECLARE @dialog_handle UNIQUEIDENTIFIER ; BEGIN DIALOG CONVERSATION @dialog_handle FROM SERVICE [//InitiatorService] TO SERVICE '//TargetService' ON CONTRACT [//ContractName] WITH LIFETIME = 60 ; Reliable, in-order, once-only delivery Reliable, in-order, once-only delivery Conversations can be long-running Conversations can be long-running

18 Key Concepts Conversation Group [previously called “Service Instance”] Conversation Group [previously called “Service Instance”] A user-defined grouping of conversations A user-defined grouping of conversations For example: All the conversations required to process a single order For example: All the conversations required to process a single order Order conversation (Order Header, Order Line) Order conversation (Order Header, Order Line) Inventory service conversation (Inventory Check, Inventory Response) Inventory service conversation (Inventory Check, Inventory Response) Shipping service conversation (Shipping Request, Shipping Response) Shipping service conversation (Shipping Request, Shipping Response) Purchasing service conversation (Purchasing Request, Purchasing Response) Purchasing service conversation (Purchasing Request, Purchasing Response) Defines state scope and locking scope Defines state scope and locking scope Conversation group lock Conversation group lock Defines the locking scope for all the conversations involved in processing single application unit. Defines the locking scope for all the conversations involved in processing single application unit. Different parts of the application logic may be executing on different threads simultaneously. This is one of the things that makes writing loosely-coupled asynchronous applications Different parts of the application logic may be executing on different threads simultaneously. This is one of the things that makes writing loosely-coupled asynchronous applications A conversation group lock is required for any conversation receives or sends. A conversation group lock is required for any conversation receives or sends. In an order-entry application with hundreds of active threads, a single order is only processed on one thread at a time which greatly simplifies asynchronous programming. In an order-entry application with hundreds of active threads, a single order is only processed on one thread at a time which greatly simplifies asynchronous programming.

19 Key Concepts Routes Routes Used for conversations between different instances of SQL Server Used for conversations between different instances of SQL Server A route maps a service name to a physical location A route maps a service name to a physical location Provides location transparency Provides location transparency Supports load balancing Supports load balancing Allows delivery to a specific instance of a service Allows delivery to a specific instance of a service

20 Key Concepts Service MessageType Queue MessageType MessageType MessageType Contract Contract Service Conversation

21 Usage Scenarios Asynchronous distributed applications Asynchronous distributed applications Travel Agency Sample Travel Agency Sample Booking a trip requires potentially long running conversations with hotel, air, and car rental systems. Booking a trip requires potentially long running conversations with hotel, air, and car rental systems. Send messages via SSB, correlate the results, commit the transaction Send messages via SSB, correlate the results, commit the transaction Email the confirmation to the customer Email the confirmation to the customer

22 Usage Scenarios Scale out batch processing Scale out batch processing Loan Processing Sample Loan Processing Sample Starting from an input file of loans, several correlated steps must occur in sequence Starting from an input file of loans, several correlated steps must occur in sequence Lifecycle stages: import, normalize, validate, price, fund Lifecycle stages: import, normalize, validate, price, fund A loosely coupled, message based architecture allows processing to be distributed over one or more hardware assets A loosely coupled, message based architecture allows processing to be distributed over one or more hardware assets Additional workload can be accommodated by adding hardware Additional workload can be accommodated by adding hardware

23 Demo

24 Architectural Positioning SSB & MSMQ SSB & MSMQ SSB: SSB: Service Broker can commit updates to the message queue, database data, and application state in a simple database transaction. MSMQ requires a two-phase commit to do the same thing. Service Broker can commit updates to the message queue, database data, and application state in a simple database transaction. MSMQ requires a two-phase commit to do the same thing. MSMQ message ordering is assured within a single transaction. Service Broker message ordering in a dialog is assured across transactions, sending applications and receiving applications. MSMQ message ordering is assured within a single transaction. Service Broker message ordering in a dialog is assured across transactions, sending applications and receiving applications. The maximum MSMQ message size is 4MB. The maximum Service Broker message size is 2GB. The maximum MSMQ message size is 4MB. The maximum Service Broker message size is 2GB. MSMQ: MSMQ: MSMQ offers express, reliable, and transactional message styles while Service Broker is transactional only. MSMQ offers express, reliable, and transactional message styles while Service Broker is transactional only. MSMQ can communicate between virtually any pair of Windows applications and with the MQ-Series bridge can talk to applications on a wide variety of hardware and software. Service Broker can only communicate between applications connected to SQL Server. MSMQ can communicate between virtually any pair of Windows applications and with the MQ-Series bridge can talk to applications on a wide variety of hardware and software. Service Broker can only communicate between applications connected to SQL Server. MSMQ offers both a TCP/IP binary protocol and an HTTP SOAP protocol for communications. Service Broker is binary TCP/IP only for Yukon. MSMQ offers both a TCP/IP binary protocol and an HTTP SOAP protocol for communications. Service Broker is binary TCP/IP only for Yukon. The scope of a Message Queuing transaction is the local computer, and Message Queuing does not guarantee end-to- end delivery The scope of a Message Queuing transaction is the local computer, and Message Queuing does not guarantee end-to- end delivery

25 Architectural Positioning SSB & BizTalk SSB & BizTalk SSB: SSB: Can reliably deliver a message to another SQL Server instance with exactly-once in-order assurances Can reliably deliver a message to another SQL Server instance with exactly-once in-order assurances If that’s all you need, and you’ve got SQL Server 2005, then SSB is a good fit If that’s all you need, and you’ve got SQL Server 2005, then SSB is a good fit BizTalk: BizTalk: Can reliably deliver a message to another SQL Server instance with exactly-once in-order assurances Can reliably deliver a message to another SQL Server instance with exactly-once in-order assurances Can manipulate the contents of messages, map message formats, manage message processing, manage workflows, manage state, send messages over multiple different transports Can manipulate the contents of messages, map message formats, manage message processing, manage workflows, manage state, send messages over multiple different transports If you need these features, you need BizTalk If you need these features, you need BizTalk

26 Architectural Positioning SSB & Indigo SSB & Indigo SSB SSB Supports reliable, transactional messaging over TCP/IP using a proprietary protocol between SQL Server instances Supports reliable, transactional messaging over TCP/IP using a proprietary protocol between SQL Server instances Crisp failure semantics, tight integration with SQL Server’s transaction management Crisp failure semantics, tight integration with SQL Server’s transaction management Indigo Indigo Supports many different messaging styles over a variety of standards-based protocols between Windows and any OS that implements the standard protocols that Indigo supports Supports many different messaging styles over a variety of standards-based protocols between Windows and any OS that implements the standard protocols that Indigo supports Rich extensibility model based on pipelines Rich extensibility model based on pipelines Less full featured than SSB for SQL-to-SQL connections Less full featured than SSB for SQL-to-SQL connections

27 Resources Community Site: http://www.sqlservicebroker.com/forums Community Site: http://www.sqlservicebroker.com/forums http://www.sqlservicebroker.com/forums Free book chapter: http://download.microsoft.com/download/3/8/ 1/38154d73-bc47-4e9f-a7f5- ca9beb118fde/Chapter15_w.pdf Free book chapter: http://download.microsoft.com/download/3/8/ 1/38154d73-bc47-4e9f-a7f5- ca9beb118fde/Chapter15_w.pdf http://download.microsoft.com/download/3/8/ 1/38154d73-bc47-4e9f-a7f5- ca9beb118fde/Chapter15_w.pdf http://download.microsoft.com/download/3/8/ 1/38154d73-bc47-4e9f-a7f5- ca9beb118fde/Chapter15_w.pdf

28 The End Questions?


Download ppt "Intro to SSB SQL Server 2005 Service Broker Brian Jackson Microsoft Consulting Services."

Similar presentations


Ads by Google