Click to Rate and Give Feedback
TechNet
TechNet Library
BizTalk Server
Technical Reference
 Zombies in BizTalk Server 2006
Collapse All/Expand All Collapse All
Zombies in BizTalk Server 2006

What is a zombie?

  • A zombie message is a message that was routed to a running orchestration from the messagebox and was "in flight" when the orchestration ended. An "in flight" message is a message that has been routed to a service instance and so is in a messagebox queue destined for the service instance. Since the message can no longer be consumed by the subscribing orchestration instance, the message is suspended and marked with a ServiceInstance/State value of "Suspended (Non-resumable)".

  • A zombie service instance is an instance of an orchestration which has completed while a message that was routed to the orchestration instance from the messagebox was still "in flight". Since the orchestration instance has ended, it cannot consume the "in flight" messages and so is suspended and marked with a ServiceInstance/State value of "Suspended (Non-resumable)".

The occurrence of zombies typically falls into one of the following categories:

  1. Terminate control messages – The orchestration engine allows the use of control messages to cancel all currently running work in a specific orchestration instance. Since the control message immediately halts the running orchestration, zombie instances are not unexpected. A number of Human Workflow related designs tend to use this mechanism as well as some other designs.

  2. Parallel listen receives – In this scenario the service instance waits for 1 of n messages and when it receives certain messages it does some work and terminates. If messages are received on a parallel branch just as the service instance is terminating, zombies are created.

  3. Sequential convoys with non-deterministic endpoints – In this scenario, a master orchestration schedule is designed to handle all messages of a certain type in order to meet some type of system design requirement. These design requirements may include ordered delivery, resource dispenser, and batching. For this scenario, the tendency is to define a while loop surrounding a listen with one branch having a receive and the other having a delay shape followed by some construct which sets some variable to indicate that the while loop should stop. This is non-deterministic since the delay could be triggered, but a message could still be delivered. Non-deterministic endpoints like this are prone to generating zombies.

When a zombie service instance is suspended in Microsoft BizTalk Server 2006 the following error message is generated:

0xC0C01B4C The instance completed without consuming all of its messages. The instance and its unconsumed messages have been suspended.
Bb203853.note(en-us,BTS.20).gifNote
The ServiceInstance/State value of zombies in BizTalk Server 2004 is "Completed With Discarded Messages"

Because the ServiceInstance/State value of zombies in BizTalk Server 2006 has changed from BizTalk Server 2004, any WMI scripts that were used to clean up zombies in BizTalk Server 2004 will have to be modified for use with BizTalk Server 2006.

Scripts that are used to remove zombie instances in BizTalk Server 2006 must check for an ErrorId value of 0xC0C01B4C (ErrorId = "0xC0C01B4C").

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker