Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new IP assignment, random init, fifo reuse of IP #405

Merged
merged 2 commits into from
Jun 11, 2021

Commits on Jun 7, 2021

  1. replace map in IP pool registry with ets

    The map required a synchronous call to the server. The ets table
    allows for concurent reads without synchnoizing the reader processes.
    
    The benchmark suite shows no speed up from. However that is not
    surprising as the results from the suite do vary heavily between
    runs.
    
    The registry showever up in a observer output with a non-zero
    message-q during benchmark runs. This change makes that go away.
    RoadRunnr committed Jun 7, 2021
    Configuration menu
    Copy the full SHA
    c427a56 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. new IP assignment, random init, fifo reuse of IP

    Initialized the free IP pool with a random order and time stamp to
    build a queue in the ets table. Released IPs are appended to the end
    of the free queue (through the timestamp).
    RoadRunnr committed Jun 8, 2021
    Configuration menu
    Copy the full SHA
    1175727 View commit details
    Browse the repository at this point in the history