How to add custom BizTalk persistent points using code?

212 Views Asked by At

Is there any way to add persistent points within a BizTalk Orchestration flow using .NET code? I have searched and searched but haven't been able to find anything helpful. Help please, anyone?

1

There are 1 best solutions below

1
On BEST ANSWER

Wrapping you code in an atomic scope will create a persitence point as soon as the scope is encountered.

This is why its generally considered bad practise to use atomic scopes, unless you really need them, because persistence is a cost and introduces complexity.

In an ideal world your orchestration would be designed to be idempotent so that there is no need for persistence - your orchestration gets loaded once and then stays in memory until it's finished (baring dehydration).

If the orchestration fails it should be replayable as a whole unit. However, that is not always possible, hence the need for persistence points.

but I guess it's bad practice..?

I would classify creating the requirement for persistence within a long running process as sometimes unavoidable bad design.

Imagine as part of your business process you have to make a call to an external resource which has an API which is not idempotent. A good example would be a web service which expects calls to arrive in a certain order. In this case you are forced to persist the state of your business process before and after the service call, otherwise you risk calling the service again with stale or otherwise incorrect call data if your process suffers a failure and then resumes. If the service call itself fails you would also be forced to write complex compensation logic to determine whether it was safe to call the service again.