madelson

Results 133 comments of madelson

> It's only happened twice in the last year and this process is run every 15 minutes. Wow I guess we might we waiting a long time for a repro,...

This doesn't seem easy to implement on top of .NET APIs; we'd need to either use the TASKKILL windows utility or call into native APIs

@rocky05475 I looked into this a bit but I couldn't find a way to implement it that was not Windows or even Windows version-specific (some versions seem to have TSKILL...

@adamsd308 thanks this is very helpful. With this, I think we can add some APIs that are only on netcoreapp3.0+ to support this. I think that the cleanest way to...

KillTree() implementation for windows (for possible shimming): https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/Process.Win32.cs#L382 KillTree() implementation for unix (for possible shimming): https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/Process.Unix.cs#L89

Currently there is no MongoDB implementation included in this library. Looking at NuGet, there is at least one package available that does distributed locking with Mongo (https://www.nuget.org/packages/DistributedLock.Mongo/). That package has...

Hi @nguyencao96 thanks for your interest in the library. As I think you suspect, you're hitting a thread starvation issue. Here are two quick workarounds; The first and best approach...

Note to self: I think we can achieve synchronous teardown in the common keepalive case by swapping out this code: ``` this._monitoringWorkerTask = this._monitoringWorkerTask .ContinueWith((_, state) => ((ConnectionMonitor)state).MonitorWorkerLoop(), state: this)...

Hi @bitchkat just to clarify are you interested in contributing an open source implementation to this repository based on Apache Ignite? If so, I'd be happy to guide you through...

@bitchkat that's great! I'd really appreciate having the contribution. Here's how I would recommend proceeding. First off, I think it would be worth discussing the high level algorithm approach on...