CastLouis

CastLouis

i have a process that i want to modify the conection timeout in ecto, but it still wit the same conection time out this is the error:

[error] Postgrex.Protocol (pid<0.319.0>) disconnected: ** (DBConnection.ConnectionError) owner pid<0.481.0> timed out because it owned the connection for longer than 15000ms

(DBConnection.ConnectionError) tcp send: closed

Showing Posts 1 to 10

Eiji

Eiji

@CastLouis: Did you checked this article? It’s guide for probably what you want.

CastLouis

CastLouis OP

i check my configurations and looks like in the example, the problem is that when i run the process it took more time than 15ms, and i modify the conection timeout in test.exs and in all the files and it doesn’t work.

Eiji

Eiji

@CastLouis: It looks like another problem with (default?) configuration - ping @josevalim and @fishcakez.

To be sure, please update your dependencies (especially Ecto and Postgrex).

Please also give us some info:

  1. Your OS and source of Erlang and Elixir you use like: Distro Name - Version - default/name of repo
  2. Erlang and Elixir versions
  3. Your dependencies version (again especially Ecto and Postgrex)
  4. Your database version
  5. If possible please share a minimal example to reproduce your problem with timeout
josevalim

josevalim

Creator of Elixir

Thanks @Eiji.

Keep in mind that the ownership timeout is controlled by the :ownership_timeout configuration. I think we improve the error message for it in more recent versions as well.

CastLouis

CastLouis OP

Good morning
i was loading a .csv file with a lot of registry, it took a lot of time to complete, while it loading the

code of loading the file
defp parse_line_to_string(line) do
<<code::binary-size(2), _::binary-size(1), rest::binary>> = line
{code, rest}
end

the code to insert into the database:

defp parse_line_to_string(line) do
<<code::binary-size(2), _::binary-size(1), rest::binary>> = line
{code, rest}
end

#the configuration from ecto:
config :na_db,
ecto_repos: [NA.DB.Repo]

config :na_db, NA.DB.Repo,
adapter: Ecto.Adapters.Postgres,
database: “nadb”,
username: “dadmin”,
password: “d@dm!n”,
hostname: “127.0.0.1”,
pool: Ecto.Adapters.SQL.Sandbox,
port: “5432”,
timeout: 450000

i was changing and use :ownership_timeout and set more time and it doesn’t work.

Eiji

Eiji

I tried to simulate similar work (collecting data for more than 15s) and I got same error, however Supervisor for MyApp.Repo saves tests from not passing and I checked also database and all works! Elixir is just awesome!

@josevalim: Thanks! I added it to configuration and it still works same, but without errors like in this topic. I agree that we need a better error message, because I also through about other timeout configuration variables.
I have a question that is related to this topic. Is it safe to set much more bigger timeouts in configuration than default one or we need to accept some consequences? Imagine new blog will probably be rarely visited and that surprise of Elixir admin that it have a error every 15s :smiley:

@CastLouis: Make sure that you are changing it in right configuration file and be sure to follow all steps in tutorial I previously linked. As I already wrote I got same error in example application and solved it using both tutorial and José tip.

CastLouis

CastLouis OP

i was modifing the postgrex.ex, the property @timeout with more time, but the problem still,

Eiji

Eiji

@CastLouis: What you mean by postgrex.ex? You need to change configuration *.exs file in /config directory. Depends on environment that you are working on you should apply configuration change in appropriate configuration file like: test.exs.
Example config/test.exs file:

use Mix.Config

config :my_app, MyApp.Repo,
  adapter: Ecto.Adapters.Postgres,
  database: "my_app_test",
  hostname: "localhost",
  ownership_timeout: 60_000, # <- add this line
  password: "postgres",
  pool: Ecto.Adapters.SQL.Sandbox,
  username: "postgres"
CastLouis

CastLouis OP

i was modify postgrex @timeout property for chech, i was modifing the test.exs with ownership_timeout, pool_timeout and timeout too, but the problem persist and i dont know how can i find more information about it, i think the reset the machine if ecto see the changes let me.

Eiji

Eiji

@CastLouis: You missed something. Checked again Ecto tutorial step by step and be sure to add :ownership_timeout to test.exs. If you can publish your code or invite me to repository then I can fix it for you - I will create a PR. I have accounts on Github, BitBucket and GitLab

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
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
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

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
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 &amp; Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New

Latest on Elixir Forum

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews