Azure Service Definition Schema (.csdef File)
The service definition file defines the service model for an application. The file contains the definitions for the roles that are available to a cloud service, specifies the service endpoints, and establishes configuration settings for the service. Configuration setting values are set in the service configuration file, as described by the Azure Service Configuration Schema (.cscfg File).
By default, the Azure Diagnostics configuration schema file is installed to the C:\Program Files\Microsoft SDKs\Windows Azure\.NET SDK\<version>\schemas directory. Replace <version> with the installed version of the Azure SDK.
The default extension for the service definition file is .csdef.
Basic service definition schema
The service definition file must contain one ServiceDefinition element. The service definition must contain at least one role (WebRole or WorkerRole) element. It can contain up to 25 roles defined in a single definition and you can mix role types. The service definition also contains the optional NetworkTrafficRules element which restricts which roles can communicate to specified internal endpoints. The service definition also contains the optional LoadBalancerProbes element which contains customer defined health probes of endpoints.
The basic format of the service definition file is as follows.
<ServiceDefinition name="<service-name>" topologyChangeDiscovery="<change-type>" xmlns=”https://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition” upgradeDomainCount="<number-of-upgrade-domains>" schemaVersion=”<version>”>
<LoadBalancerProbes>
…
</LoadBalancerProbes>
<WebRole …>
…
</WebRole>
<WorkerRole …>
…
</WorkerRole>
<NetworkTrafficRules>
…
</NetworkTrafficRules>
</ServiceDefinition>
Schema definitions
The following topics describe the schema:
ServiceDefinition Element
The ServiceDefinition element is the top-level element of the service definition file.
The following table describes the attributes of the ServiceDefinition element.
Attribute |
Description |
---|---|
name |
Required. The name of the service. The name must be unique within the service account. |
topologyChangeDiscovery |
Optional. Specifies the type of topology change notification. Possible values are:
|
schemaVersion |
Optional. Specifies the version of the service definition schema. The schema version allows Visual Studio to select the correct SDK tools to use for schema validation if more than one version of the SDK is installed side-by-side. |
upgradeDomainCount |
Optional. Specifies the number of upgrade domains across which roles in this service are allocated. Role instances are allocated to an upgrade domain when the service is deployed. For more information, see How to: Update a cloud service role or deployment. You can specify up to 20 upgrade domains. If not specified, the default number of upgrade domains is 5. |