zatae

zatae

Is this possible to deploy a Phoenix application to Google Cloud Run with MIX_ENV=dev ? For some reasons when I try deploy in dev mode, it just crash when the application starts.

Since Cloud Run is using gVisor, could this be possible that Phoenix is making some system calls that gVisor would consider as dangerous and just kill the process?

Showing Posts 1 to 8

timothy

timothy

We are running MIX_ENV=prod without any problems, not sure why mix_ENV=dev wouldn’t work. Maybe phoenix_live_reload causes this because it tries to access the filesystem (and requires inotify)? You should be able to find more information in the logs on Google Cloud.

zatae

zatae OP

After some digging :

"textPayload": "Uncaught signal: 10, pid=43, tid=43, fault_addr=0."

Based on this post, signal 10 is for sys_mprotect. So it seems that yes, Phoenix is making some calls in dev mode that trigger some security rules. If anyone has a workaround or more information about this, it would be really cool ! :slight_smile:

timothy

timothy

Which “execution environment” are you using? The second generation, which is still in preview though, might fix these system calls. This is what we are currently using.

According to the docs:

The second generation execution environment provides full Linux compatibility rather than system call emulation.

zatae

zatae OP

I tried but it also crash using gen2 (but thanks, I was not aware of this!). Do you think that hot reload / inotify can be part of the problem?

timothy

timothy

So I did some testing and it appears Google Cloud kills the application because the healthcheck fails. It test if the application is reachable on the given port. Since Phoenix runs on 127.0.0.1 in dev environment it isn’t available. So changing the ip configuration in config/dev.exs fixed the issue for me.

config :phoenix_cloud_run, PhoenixCloudRunWeb.Endpoint,
  # Binding to loopback ipv4 address prevents access from other machines.
  # Change to `ip: {0, 0, 0, 0}` to allow access from other machines.
- http: [ip: {127, 0, 0, 1}, port: 4000],
+ http: [ip: {0, 0, 0, 0}, port: 4000],
zatae

zatae OP

Even with the config/dev.ex update, for some reasons, this is not working for me. Do you use gen2 exec env? Anyway thanks for your help, I might have something else that is causing this crashes, I will investigate more in the next days.

timothy

timothy

I tested with both first-and second generation.

Did you change the port configuration on Cloud Run too? By default Cloud Run uses 8080 but Phoenix uses 4000 in dev environment.

zatae

zatae OP

That was it, totally forgot about that! Thank you very much for your help.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
subsaharancoder
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Damirados
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews