Hi Thor, ... NSB 4.0? As David point out, NServiceBus v4 is going to be released with Raven client v2.0.2375 (the latest stable v2 release) ... 2.5 (which is...
19518
croppsimon
1:38 am
Murali This behavior is by design. As Jeremy has said if something goes wrong at startup that is not recoverable then we want shut down the process. And yes,...
19519
feldman.sean@...
feldman.sean...
4:38 am
Hi,This is more of a feedback on the labs. Love this idea of being able to run samples in a test box, but for a better UX you should really resolve the issue...
19520
charlie_barker_100
charlie_bark...
10:57 am
Hi, We have 3.3.5 endpoint that is reporting very large critical time values for example 71,000 for short periods of time. Can anyone tell me is the critical...
19521
Andreas Öhlund
andreas_ohlund
11:07 am
Seconds => counter.RawValue = Convert.ToInt32((processingEnded - sent).TotalSeconds); On Wed, Jun 19, 2013 at 12:57 PM, charlie_barker_100 ... -- ...
19522
Udi Dahan
udidahan7
11:53 am
Thanks Sean, We'll take care of that right away. -- Udi From: nservicebus@yahoogroups.com [mailto:nservicebus@yahoogroups.com] On Behalf Of...
19523
charlie_barker_100
charlie_bark...
11:58 am
In that case I am very confused. We are seeing: Critical Time is: 0 @ 23:59:00 71,000 @ 00:09:00 Could this be a bug?...
19524
Andreas Öhlund
andreas_ohlund
11:59 am
Can you export the message using queue explorer and send it over? On Wed, Jun 19, 2013 at 1:58 PM, charlie_barker_100 ... -- http://andreasohlund.net ...
19525
Udi Dahan
udidahan7
12:01 pm
It could be that there are some messages which have had their delivery be delayed due to network issues. -- Udi From: nservicebus@yahoogroups.com...
19526
Udi Dahan
udidahan7
12:04 pm
Hi Sean, I'll get in touch with you off-list to discuss what'll work best for you. Thanks, -- Udi From: nservicebus@yahoogroups.com...
19527
Ramon Smits
exyll
12:05 pm
... Please, do not use MSMQ for such type of communication. This is clearly something synchronous. IMHO you are using the wrong technology to solve your...
19528
Ramon Smits
exyll
12:11 pm
Well, disabling auto subscribe is not the solution as it is obvious that we still want to subscribe to real events. We want the same behavior as is default in...
19529
Ramon Smits
exyll
12:24 pm
AFAIK when the receiver side is out of quota then the messages stay in the outgoing queue on sender side until that is full too at which point msmq will throw...
19530
charlie_barker_100
charlie_bark...
12:31 pm
Sure, I'll have to turn on journaling then I send it over tomorrow (we see the same behaviour every night). This is a fairly simple system, we have one server...
19531
Thor Arne Johansen
thorj38
1:11 pm
Yes we are using RavenDB for application level data, and we are considering switching to RavenDB 2.5 and NSB 4.0. We use the same RavenDB server for both NSB...
19532
Thor Arne Johansen
thorj38
1:15 pm
John, Thanks for your answer. Does anybody know how closely RavenDB (Oren) adhere to the Semver conventions? Or more to the point; has anyone experienced any...
19533
jeffhenson24
1:27 pm
We are having a problem where SQL connections we open during the processing of a message (both reads and writes) are being stuck open long after the message...
19534
manateeboyfl
1:35 pm
In our application, we have a handful of contextual message headers that, once given a value, should be propagated with each message in our processing...
19535
Werner
wernerclausen
1:44 pm
+1 Make a 20 ms check in your (front-end) user database and be on your way to something more interesting. -- Werner...
19536
yoela
1:49 pm
Yes, there is a big difference between MSMQ ("machine") quota and queue quota. When machine quota is exceeded, MSMQ behaves like "unavailable": - All...
19537
Andreas Öhlund
andreas_ohlund
2:12 pm
... And since v3.X NServiceBus turns this on by default. This might cost a few % in terms of performance so If you're running under high load you might ...
19538
kijana.woodard
2:13 pm
My, very limited, experience is that upgrading a 2.0 database to 2.5 went without a hitch. It's a matter of pointing the 2.5 server executable at the 2.0 data....
19539
Andreas Öhlund
andreas_ohlund
2:14 pm
Here is an example on how to do it: https://github.com/NServiceBus/NServiceBus/blob/develop/src/NServiceBus.Core/Unicast/Monitoring/CausationMutator.cs ... -- ...
19540
David Boike
ducttapeman
3:37 pm
The RavenDB team is pretty good about SemVer stuff - they're still pretty sore about the JSON.NET dependency they used to take since that really did NOT adhere...
19541
kijana.woodard
3:43 pm
It should be mentioned, whether you store NSB in the same raven instance with your app data or not, it doesn't change the licensing. You need a raven licence...
19542
David Boike
ducttapeman
3:52 pm
To piggyback... Why centralize your NSB and App storage needs? You're creating a single point of failure and, as this question demonstrates, making it harder...
19543
mackiensb
4:26 pm
I've attempted to upgrade to 3.3.8 via Nuget but it looks like the NServiceBus.NHibernate package has the wrong NHibernate dependency. The assembly itself...
19544
Jonathan Matheus
kblooie
6:09 pm
We just got the Raven team to add client / server compatibility documentation for us to provide to RavenHQ customers. You can take a look here to get future...
19545
Brian
bgvallelunga
6:09 pm
I have a need to inspect a header on an incoming message and based on that header, let the message pass or kill it completely, without it going to the error...
19546
manateeboyfl
7:45 pm
Worked like a charm - thank you! For anyone interested in the implementation: public void MutateOutgoing(object[] messages, TransportMessage transportMessage) ...