Skip to content

Commit de4b05a

Browse files
Merge pull request #248505 from spelluru/sbusfresh0816
Freshness review of AMQP and SQL filter articles
2 parents afd20d8 + ff26cdf commit de4b05a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/service-bus-messaging/service-bus-amqp-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Overview of AMQP 1.0 in Azure Service Bus
33
description: Learn how Azure Service Bus supports Advanced Message Queuing Protocol (AMQP), an open standard protocol.
44
ms.topic: article
5-
ms.date: 05/31/2022
5+
ms.date: 08/16/2023
66
---
77

88
# Advanced Message Queueing Protocol (AMQP) 1.0 support in Service Bus

articles/service-bus-messaging/service-bus-amqp-troubleshoot.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Troubleshoot AMQP errors in Azure Service Bus | Microsoft Docs
33
description: Provides a list of AMQP errors you may receive when using Azure Service Bus, and cause of those errors.
44
ms.topic: article
5-
ms.date: 09/20/2021
5+
ms.date: 08/16/2023
66
---
77

88

99
# AMQP errors in Azure Service Bus
10-
This article provides some of the errors you receive when using AMQP with Azure Service Bus. They are all standard behaviors of the service. You can avoid them by making send/receive calls on the connection/link, which automatically recreates the connection/link.
10+
This article provides some of the errors you receive when using AMQP with Azure Service Bus. They're all standard behaviors of the service. You can avoid them by making send/receive calls on the connection/link, which automatically recreates the connection/link.
1111

1212
## Link is closed
1313
You see the following error when the AMQP connection and link are active but no calls (for example, send or receive) are made using the link for 10 minutes. So, the link is closed. The connection is still open.
@@ -17,14 +17,14 @@ amqp:link:detach-forced:The link 'G2:7223832:user.tenant0.cud_00000000000-0000-0
1717
```
1818

1919
## Connection is closed
20-
You see the following error on the AMQP connection when all links in the connection have been closed because there was no activity (idle) and a new link has not been created in 5 minutes.
20+
You see the following error on the AMQP connection when all links in the connection have been closed because there was no activity (idle) and a new link hasn't been created in 5 minutes.
2121

2222
```
2323
Error{condition=amqp:connection:forced, description='The connection was inactive for more than the allowed 300000 milliseconds and is closed by container 'LinkTracker'. TrackingId:00000000000000000000000000000000000_G21, SystemTracker:gateway5, Timestamp:2019-03-06T17:32:00', info=null}
2424
```
2525

26-
## Link is not created
27-
You see this error when a new AMQP connection is created but a link is not created within 1 minute of the creation of the AMQP Connection.
26+
## Link isn't created
27+
You see this error when a new AMQP connection is created but a link isn't created within 1 minute of the creation of the AMQP Connection.
2828

2929
```
3030
Error{condition=amqp:connection:forced, description='The connection was inactive for more than the allowed 60000 milliseconds and is closed by container 'LinkTracker'. TrackingId:0000000000000000000000000000000000000_G21, SystemTracker:gateway5, Timestamp:2019-03-06T18:41:51', info=null}

articles/service-bus-messaging/service-bus-messaging-sql-filter.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Azure Service Bus Subscription Rule SQL Filter syntax | Microsoft Docs
33
description: This article provides details about SQL filter grammar. A SQL filter supports a subset of the SQL-92 standard.
44
ms.topic: article
5-
ms.date: 05/31/2022
5+
ms.date: 08/16/2023
66
---
77

88
# Subscription Rule SQL Filter Syntax
99

10-
A *SQL filter* is one of the available filter types for Service Bus topic subscriptions. It's a text expression that leans on a subset of the SQL-92 standard. Filter expressions are used with the `sqlExpression` element of the 'sqlFilter' property of a Service Bus `Rule` in an [Azure Resource Manager template](service-bus-resource-manager-namespace-topic-with-rule.md), or the Azure CLI `az servicebus topic subscription rule create` command's [`--filter-sql-expression`](/cli/azure/servicebus/topic/subscription/rule#az-servicebus-topic-subscription-rule-create) argument, and several SDK functions that allow managing subscription rules. The allowed expressions are shown below.
10+
A *SQL filter* is one of the available filter types for Service Bus topic subscriptions. It's a text expression that leans on a subset of the SQL-92 standard. Filter expressions are used with the `sqlExpression` element of the 'sqlFilter' property of a Service Bus `Rule` in an [Azure Resource Manager template](service-bus-resource-manager-namespace-topic-with-rule.md), or the Azure CLI `az servicebus topic subscription rule create` command's [`--filter-sql-expression`](/cli/azure/servicebus/topic/subscription/rule#az-servicebus-topic-subscription-rule-create) argument, and several SDK functions that allow managing subscription rules. The allowed expressions are shown in this section.
1111

1212
Service Bus Premium also supports the [JMS SQL message selector syntax](https://docs.oracle.com/javaee/7/api/javax/jms/Message.html) through the JMS 2.0 API.
1313

@@ -52,7 +52,7 @@ Service Bus Premium also supports the [JMS SQL message selector syntax](https://
5252

5353
## Remarks
5454

55-
An attempt to access a non-existent system property is an error, while an attempt to access a non-existent user property isn't an error. Instead, a non-existent user property is internally evaluated as an unknown value. An unknown value is treated specially during operator evaluation.
55+
An attempt to access a nonexistent system property is an error, while an attempt to access a nonexistent user property isn't an error. Instead, a nonexistent user property is internally evaluated as an unknown value. An unknown value is treated specially during operator evaluation.
5656

5757
## property_name
5858

@@ -211,7 +211,7 @@ Consider the following Sql Filter semantics:
211211
212212
### Property evaluation semantics
213213
214-
- An attempt to evaluate a non-existent system property throws a `FilterException` exception.
214+
- An attempt to evaluate a nonexistent system property throws a `FilterException` exception.
215215
216216
- A property that doesn't exist is internally evaluated as **unknown**.
217217

0 commit comments

Comments
 (0)