YSS
Hello, we are running an API with Elixir/Phoenix and when we push a new version, the server goes down for a small amount of time and this is causing issues for our API users.
I have looked into the Hot Code Loading, but wanted to ask people here what their opinion is. Now we are running 1 server instance and we think blue/green deployments would be a solution to have 2 elixir/phoenix servers but we are then into the overhead of making sure the sessions are sticky and basically need to re-organize our complete application.
Thanks for any help if you encountered this situation.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
garrison
I’ve been happy using Caddy’s
reverse_proxywith Phoenix with very little configuration. I haven’t done blue/green with it but it seems like the cookie lb_policy would work for sticky sessions, though I guess not for API clients.But do you actually need sessions to stick? If you’re bringing up a new server don’t you actually want new connections to go to the new server?
rhcarvalho
What’s your current infrastructure like? Deployment strategy and tooling?
hauleth
You do not need hot code reload, you need better deployment strategy and connection draining (so requests “in progress” will be finished).
There are different options how to achieve seamless deployment and from my experience - if you can avoid hot code reload, then it is better to avoid it.
YSS
github acdtions → deploys to single instance elixir/phoenix server
i can setup 2 elixir servers but how will the session sharing work with elixir phoenix if i don’t use sticky sessions? do you have expeirence with this?
YSS
the sessions draining in blue/green deployment isn’t an issue
it’s also the exlir/phoenix webinterface app that will need sticky sessions or i will have to store the sessions if they are shared
LostKobrakai
By default sessions are cookie based. The only shared knowledge the servers need is the secret_key configured on the endpoint. Everything is sent to the client and back. That’s at least the case unless you switched to a different session implementation.
YSS
ok thanks so auth on server1→ cookie session is set on client, we use server2 all of a sudden but we sill use that same session and it’s accepted by server1 and server2 because they use the same secret_key?
i remember my elixir phoenix app locking the postgres, how does this work wihen 2 servers connect to the same postgres? arent they both try to lock the tables they work with? thanks!!