Created
May 7, 2023 17:32
-
-
Save Aaronontheweb/13251d255c0f1e722b4704800aa53ff9 to your computer and use it in GitHub Desktop.
LINQPad Query to Visualize MurmurHash Distributions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// requires the `Akka` NuGet package to be installed in the query | |
int entitiesPerNodeFactor = 100; | |
List<string> nodes = Enumerable.Range(0, 10).Select(c => $"hostname-{c}").ToList(); | |
Dictionary<string, int> entityToNodeAllocations = nodes.ToDictionary(c => c, k => 0); | |
var entityIds = Enumerable.Range(0, nodes.Count * entitiesPerNodeFactor).Select(e => $"entity-{e}"); | |
foreach(var e in entityIds){ | |
var hashCode = MurmurHash.StringHash(e); | |
var selectedNode = Math.Abs(hashCode % nodes.Count); | |
var nodeId = nodes[selectedNode]; | |
entityToNodeAllocations[nodeId]++; // increase node alloc count | |
} | |
entityToNodeAllocations.Chart(c => c.Key, v => v.Value, LINQPad.Util.SeriesType.Pie).Dump(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment