libcluster icon indicating copy to clipboard operation
libcluster copied to clipboard

Automatic cluster formation/healing for Elixir applications

Results 28 libcluster issues
Sort by recently updated
recently updated
newest added

Hello there 👋🏼 This is a general request related to the project's changelog, tags, releases, etc. — I'll explain it in narrative form and offer some suggestions of how the...

As discussed in issue #190 added a flag to keep nodes once received in DNS response.

I would like to give different basenames to the various machines in my (cross-region) cluster, to make it more obvious which node(s) are running in which region. This will however...

feature

### Steps to reproduce - Configuration Used ``` config :libcluster, debug: true, topologies: [ dns: [ strategy: Cluster.Strategy.DNSPoll, config: [ poll_interval: 10_000, query: "appname.something", node_basename: "some-container" ] ] ] ```...

Fixes the following compilation warnings with Elixir 1.17. ``` warning: single-quoted strings represent charlists. Use ~c"" if you indeed want a charlist or use "" instead ```

### Summary of changes Support Elixir 1.17/Erlang OTP 27. List of changes: - set min Elixir requirement to 1.13 - support Elixir 1.13/1.17 and Erlang OTP 25/27 in CI -...

### Steps to reproduce - Configure your deployment to use Cluster.Strategy.Kubernetes.DNS, within K8s service discovery. - Scale up the deployment to have more than one Pod (Let us consider we...

- Configuration Used ``` config :libcluster, topologies: [ example_cluster: [ strategy: Cluster.Strategy.Gossip, config: [ port: 45892 ] ] ] ``` - Errors/Incorrect Behaviour Encountered ``` Application file_processor exited: FileProcessor.Application.start(:normal, [])...