接收管道中的 BizTalk Server 线程

发布于 2024-08-31 05:00:58 字数 239 浏览 4 评论 0原文

我正在为 BizTalk Server(2006 和 2009)中的接收管道构建自定义管道组件。我正在以流式传输方式构建组件。

我的问题:对于任何单个入站消息,如果我有一个反汇编组件,当我从单个入站消息创建 n 条消息时,消息代理在读取(正文)流并将消息持久化到消息时是否始终使用单个线程盒子?我想是的,但确认会有所帮助。

假设我在反汇编器中创建五个消息,这些消息中的任何一个都会从同一线程按顺序保留吗?或者可以并行处理这些消息吗?

I am building custom pipeline components for receive pipelines in BizTalk Server (2006 and 2009). I am building the components in a streaming fashion.

My question: for any single inbound message, if I have a disassembling component, when I create n messages from a single inbound message, will the message agent always use a single thread when reading the (body) streams and persisting the messages to the message box? I would think so, but confirmation would be helpful.

Say if I create five messages in the disassembler, will any of these messages be persisted sequentially from the same thread? Or could these messages be processed in parallel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂归处 2024-09-07 05:00:58

在 Biztalk 2004 上,它是在单个线程上完成的,请参阅 http://www.microsoft.com/belux/msdn/nl/community/columns/claessens/custompp.mspx 了解详细信息。

Biztalk 的后续版本应该也是如此:

  • 与 2002 年和 2004 年之间的变化相比,Biztalk 2006 没有太大变化。
  • 这如何实现?如果您有不可查找的流,则无法在流中移动,因此无法将流的不同部分分配给不同的线程。

On Biztalk 2004 it was done on a single thread, see http://www.microsoft.com/belux/msdn/nl/community/columns/claessens/custompp.mspx for details.

It should be the same for latter versions of Biztalk:

  • There was not a big change in Biztalk 2006, compared with the change between 2002 and 2004.
  • How could this be implemented? If you have a non seekable stream, it is not possible to move around the stream, and therefore not possible to allocate different parts of the stream to different threads.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文