使用 NService Bus 导入数据
使用 NService 总线。 2.00.19(使用 MSMQ 和 SQL 2008)
我们想要将数据导入到我们的系统中。
文件可能非常大,因此我们有后台处理器来从总线读取消息。这可能需要一个小时来处理。
其他人也这样做过吗? Saga 是最好的前进方式吗?
Using NService Bus. 2.00.19 (with MSMQ and SQL 2008)
We want to import data into our system.
The files could be quite large so we have Background Processor that will read a message from the Bus. This could take an hour to process.
Have other people done this? Is a Saga the best way forward?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这只是一条消息,那么您可能不需要传奇。话虽这么说,您可能会发现让读取文件的端点发送多条消息(每条消息包含一个“行”)很有用,然后您可能会发现传奇故事可以用来跟踪进度。
If it's just a single message, then you might not need a saga. That being said, you may find it useful to have the endpoint reading off of the file send multiple messages each one containing one "row", and you might then find some use for a saga to track progress.