Skip to content

Commit 8fd2dcf

Browse files
Travis Nickelsandreasohlund
andauthored
Update nservicebus/upgrades/azure-functions-service-bus-in-process-isolated-worker.md
Co-authored-by: Andreas Öhlund <[email protected]>
1 parent b1fe339 commit 8fd2dcf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

nservicebus/upgrades/azure-functions-service-bus-in-process-isolated-worker.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,9 @@ class HttpSender
149149

150150
## Ensuring consistency in the Isolated Worker model
151151

152-
If `SendsAtomicWithReceive` was previously enabled in the in-process model (note that it is not enabled by default), maintaining that consistency guarantee in the isolated worker model may be important. However, achieving this consistency in the isolated worker model requires more than just adding an assembly attribute. To ensure consistency, consider the following options:
152+
If `SendsAtomicWithReceive` was previously [enabled in the in-process model](/nservicebus/hosting/azure-functions-service-bus/in-process#message-consistency) (note that it is not enabled by default), maintaining that consistency guarantee in the isolated worker model is important.
153153

154-
- **Implement the [Outbox pattern](/architecture/consistency.md#transactions-outbox-pattern)** to enable consistent database and message queue operations. (Recommended)
155-
- Ensure that all receiver message handlers are [idempotent](/architecture/consistency.md#idempotency).
154+
Lower [transaction modes](/transports/transactions.md#transactions) can result in the duplication of outgoing messages otherwise known as [ghost messages](/nservicebus/concepts/glossary.md#ghost-message). To ensure that [consistency](/architecture/consistency) is maintained make sure that all involved message handlers are [idempotent](https://docs.particular.net/architecture/consistency#idempotency).
156155

157156
### Using SendsAtomicWithReceive in the In-Process model
158157

0 commit comments

Comments
 (0)