Reuben Bond

Results 452 comments of Reuben Bond

Hi @Ramanth, it's difficult to say precisely, without looking at a memory dump (or !dumpasync or VS's _Parallel Stacks > Tasks_ view), but it looks like your grain is in...

In the meantime, you could look for suspicious code (eg, code performing synchronous blocking), or other suspicious log lines. There are some added diagnostics in later versions of Orleans (and...

We should fix this. We could add explicit support to _ActivationData.cs_ in lieu of a general-purpose activation filter.

@scalalang2 looks good to me, but we should make the if condition also check for `null`. At the call site, we should add an `else` to the `if (record !=...

> the only issue I see with enforcing is that there isn't a fix-all option Someone hacked together a way to do it: https://github.com/mwagnerEE/Wagner.NamingStyles xref https://github.com/dotnet/roslyn/issues/14983

Good to hear & thanks for the feedback! > Will we be able to register multiple state machine managers with different underlying storage mechanisms in a single silo? I would...

> Is this publicly available somewhere? I know that the current transactions can be thought of as a series of events on the grains involved, but maintaining the coordination /...

If the `dueTime` is before the transaction is committed, it will fire once the transaction is committed (based on the Reminders V2 proposal notes). If it didn't, then the effect...

@omariom > Speaking of WALs and KV stores, have you considered FASTER Log or FASTER KV? Yep, I think that if we do this, a FASTER-based backend would be great...

@randrewy apologies - I missed your response earlier. > Maybe you can provide some extra details about what is happening in item.ApplyEffect(_playerState); from the example to illustrate the difference between...