Get-SBRuntimeSetting

Get-SBRuntimeSetting

You can use this cmdlet to retrieve the runtime settings for the Service Bus for Windows Server configuration.

Syntax

Parameter Set: Default
Get-SBRuntimeSetting [-Name <String> ] [ <CommonParameters>]

Detailed Description

Run Get-SBRuntimeSetting to retrieve one or more of the Service Bus for Windows Server runtime settings. Service Bus for Windows Server enables changing some of its runtime attributes which impact quotas and performance of the overall Service Bus for Windows Server service. Before changing runtime settings with Set-SBRuntimeSetting, it is highly recommended to check the current values of those attributes by calling Get-SBRuntimeSettings.

Parameters

-Name<String>

The name of the Service Bus for Windows Server configuration parameter.

The valid setting names that can be changed are:

DefaultMaximumQueueSizeInMegabytes – Defines the default maximum queue size in megabytes.

DefaultMaximumTopicSizeInMegabytes – Defines the default maximum topic size in megabytes.

MaximumNumberOfConnectionsPerEntity – Defines the maximum number of connections per entity. Use this setting if you have concerns that a single application may abuse the s2 service and cause a denial of service.

MaximumNumberOfCorrelationFiltersPerTopic – Defines the maximum number of correlation filters per topic.

MaximumNumberOfQueuesPerNamespace – Defines the maximum number of queues per service namespace.

MaximumNumberOfSqlFiltersPerTopic – Defines the maximum number Of SQL filters per topic.

MaximumNumberOfSubscriptionsPerTopic – Defines the maximum number of subscriptions per topic.

MaximumNumberOfTopicsPerNamespace - Defines the maximum number of subscriptions per topic.

MaximumQueueSizeInMegabytes – Defines the maximum queue size in megabytes.

MaximumTopicSizeInMegabytes – Defines the maximum topic size in megabytes.

MessageCacheSizePerEntity – Defines the message cache size per entity.

IncludeExceptionDetails – Indicates whether to include exception details.

Aliases

n

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see  about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • string

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Microsoft.AppFabric.ServiceBus.Commands.SettingInfo

Examples

Example 1

Returns the current default maximum queue size in megabytes.

PS C:\> Get-SBRuntimeSetting –Name DefaultMaximumQueueSizeInMegabytes

Service Bus 1.0 MSDN Community Forum