I Dennis, Unfortunately I haven't made further research on this. Nevertheless it is a pending task for me and I'll get back to it as soon as I can. regards ...
Reading on that now: http://www.amazon.com/gp/browse.html?node=13584001 Seems to be another option for HTTP based queues. I don't like the 8Kb limitation,...
Ayende Rahien
Ayende@...
Aug 1, 2008 10:43 pm
1183
I agree that clients shouldn’t treat the service differently if there’s an ESB in the middle. However, I don’t see nServiceBus doing that. Can you point...
One of my clients asked me for this feature and I wanted to hear the group's opinion: When doing a regular client-server kind of communication, where we have ...
Isn't this just the idea of batching? From tx perspective, I don't see the issue, because what you have is a transaction around the entire message handler...
Ayende Rahien
Ayende@...
Aug 6, 2008 9:16 am
1186
Do you think that this should be the default behaviour? -- Udi Dahan - The Software Simplist From: nservicebus@yahoogroups.com...
Yes.However, what happens if they are going to different destinations?...
Ayende Rahien
Ayende@...
Aug 6, 2008 9:57 am
1188
Reply is always to the return address specified in the incoming message. Other messages that are sent out go where they need to. -- Udi Dahan - The Software...
I supposed a more generic solution could be designed so that it batches based on address that would hold for send as well. -- Udi Dahan - The Software Simplist...
That really depends on what you are trying to do.In general, the reason for batching is to reduce the level of remote calls you make. However, that should be...
Ayende Rahien
Ayende@...
Aug 6, 2008 10:15 am
1192
I am posting this in case anyone else runs into similar issues. I continued to struggle with transaction timeouts handling this particular message. Here's the...
How many child objects did you have? -- Udi Dahan - The Software Simplist From: nservicebus@yahoogroups.com [mailto:nservicebus@yahoogroups.com] On Behalf Of...
While prototyping distributed Queues in the following environment: Publisher - Windows 2003 R2 SP1 Subscriber - Windows Vista SP1 I received the following...
About 2500. Very small, simple objects. 1/2 the problem is Active Record. I'm historically a stored procedure + DAAB developer. I had never used an ORM before....
No, it doesn't sticks for large inserts.You just need to know what you are doing wrong. In this case, you are going to the DB a lot. Use batching instead....
Ayende Rahien
Ayende@...
Aug 6, 2008 11:19 pm
1197
This may be a question for another list (and if you could direct me there I'd appreciate it!), but I'm having a hard time reconciling my application UI with...
You can get the data, and then you store it in memory and work on top of that....
Ayende Rahien
Ayende@...
Aug 7, 2008 11:03 am
1199
Except that if you have millions of rows, that probably isn't an option. Filtering / searching data is an important part of many apps. It isn't unreasonable to...
Thanks for the tip. Only trouble is, I haven't found any "batching" interface in AR. I have seen a couple of examples that use SQL to perform large inserts.....
Exactly. And filtering, searching, and sorting in memory through millions of rows would be a terribly inefficient way of doing things. I think I've settled on...
A couple of questions: 1) In nServiceBus, how does one issue an async command (via IBus.Send() and then ICallback.Register()) and specify a timeout? In the...
Thanks. First, I want to freely admit that my code may not be fully optimized. As I stated, this is the first time I'm using an ORM. I did look at Ayende's...
Udi, I did observe one related behavior that I wanted to raise to your attention. When my messagehandler was experiencing transaction timeouts.. the error was...
You had better check this one, instead: http://www.ayende.com/Blog/archive/7269.aspx...
Ayende Rahien
Ayende@...
Aug 8, 2008 3:35 pm
1207
Thanks. Another great post! Very much appreciated. I will underscore your qualification that the evaluation compares Nhibernate with batching against ADO...