This post is part of a series on this blog that will explore SQL Server Service Broker, a native messaging and queueing technology built into the SQL Server Database Engine.
Previous posts:
- SQL Server Service Broker – Introduction
- SQL Server Service Broker – Service Architecture
- SQL Server Service Broker – Conversation Architecture
- SQL Server Service Broker – Sending and Receiving
- SQL Server Service Broker – Error Handling
- SQL Server Service Broker – Internal Activation
In this installment, we discuss networking and routing components for Service Broker. So far we’ve deployed our Service Broker solution inside a single database. But the real magic of using a messaging service is communicating and synchronizing data across distributed systems. So in the next two posts we’ll learn about the different components that make that magic happen in Service Broker. We’ll begin with the networking infrastructure.
Endpoints
Service Broker uses TCP/IP to communicate with other Service Broker services on the network. Therefore the first step in distributing a Service Broker solution is to create a TCP endpoint in the SQL Server instance that it can use to listen for Service Broker communication over the network. We do that using the CREATE ENDPOINT command. When we create the endpoint, we need to specify a unique port number, in this case 4023. Make sure that port number isn’t being used by any other services on this server. We also specify the authentication type. Service Broker endpoints support Windows authentication (used in the example below) or certificate-based authentication.
For our taxes example code, we’ve decided to move the IRS-related components to separate database on another server. So we’ll need to create an endpoint on each instance:
--Create an endpoint on our Taxpayer instance CREATE ENDPOINT TaxpayerEndpoint STATE = STARTED AS TCP ( LISTENER_PORT = 4023 ) FOR SERVICE_BROKER (AUTHENTICATION = WINDOWS ); GO --Create an endpoint on our IRS instance CREATE ENDPOINT IRSEndpoint STATE = STARTED AS TCP ( LISTENER_PORT = 4022 ) FOR SERVICE_BROKER (AUTHENTICATION = WINDOWS ); GO
Note that you can only create one Service Broker endpoint per instance. So regardless of how many Service Broker solutions you’re deploying in that instance, all their network communications will go through that one endpoint. Also, if you’re using a firewall on the server, you’ll want to ensure you configure it to allow incoming connections on that port.
Routes
One of the first questions you might ask when distributing Service Broker solutions across multiple machines is “how does SQL Server know where the other service is?” And that’s where routes come in. When we distribute a Service Broker solution, we use routes to tell SQL Server the server name and endpoint port of a remote service on the network.
For example, in our taxes solution, we would create a route in the Taxpayer database that points to the IRS service, and a route in the IRS database that points to the Taxpayer service:
--create in taxpayer database CREATE ROUTE IRSRoute WITH SERVICE_NAME = N'//SBDemo/Taxes/IRSService', ADDRESS = N'TCP://LAB-SB2:4022'; --the IRS endpoint GO --create in IRS database CREATE ROUTE TaxpayerRoute WITH SERVICE_NAME = N'//SBDemo/Taxes/TaxpayerService', ADDRESS = N'TCP://LAB-SB1:4023'; --the Taxpayer endpoint GO
Each database contains a system table, sys.routes. When a conversation is started, SQL Server looks through the sys.routes table in the database where the conversation started, for a route with the service name (and Service Broker GUID, if used) specified in the conversation. If a Service Broker identifier is specified in the conversation, SQL Server will look for a route with an exact service name and Service Broker identifier match. If it can’t find an exact match, or if no Service Broker identifier is specified in the conversation, it will look for a match based on the service name alone. If SQL Server finds several matches based on the service name that have different Service Broker identifiers, it will arbitrarily pick one of the identifiers and then match the routes that use that identifier.
Note that incoming messages also go through a routing process, except their routing table is in msdb. So when we configure Service Broker for network communications, we need to create a local route for messages received from the remote service:
--create on taxpayer instance USE msdb GO CREATE ROUTE TaxpayerRoute WITH SERVICE_NAME = N'//SBDemo/Taxes/TaxpayerService', ADDRESS = N'LOCAL' GO --create on IRS instance USE msdb GO CREATE ROUTE IRSRoute WITH SERVICE_NAME = N'//SBDemo/Taxes/IRSService', ADDRESS = N'LOCAL' GO
Conclusion
Now that we’ve got our networking and routing configured for Service Broker communications, we’re almost ready to send messages between our two servers. There’s just one more thing we need to do: configure security. More on that next time.