shahryarjb
Hello, I have a micro service that its job is manage my users, this micro service when is running and even without managing many user, or 0 user , it spends 20% cpu in developer mode, It is interesting to know, I have no error which makes me understand!! For this purpose I have no options to test my project.
How can I find this problem and fix this ?
erlang v: 20.3.1
elixir v: 1.6.4
phoenix v: 1.3.3
node v: 9.3.0
other container Redis v: 4.0.11
other container Postgresql v: 10.5
my lib in elixir project:
defp deps do
[
{:postgrex, ">= 0.0.0"},
{:ecto, "~> 2.1"},
{:guardian, "~> 1.0"},
{:jose, "~> 1.8"},
{:httpoison, "~> 1.0"},
{:plug, "~> 1.4"},
{:comeonin, "~> 4.0"},
{:bcrypt_elixir, "~> 1.0"},
{:redix, "~> 0.7.0"},
{:phoenix, "~> 1.3.0"},
{:exq, "~> 0.10.1"},
{:bamboo, "~> 1.1"},
{:timex, "~> 3.4"},
{:bamboo_smtp, "~> 1.6.0"}
]
end
in phoenix project :
[
{:phoenix, "~> 1.3.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.2"},
{:gettext, "~> 0.11"},
{:trangell_users_service, in_umbrella: true},
{:cowboy, "~> 1.0"},
{:plug_cowboy, "~> 1.0"}
]
I am using Docker, and my project is Json base and doesn’t have Html render.
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
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
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
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)
NobbZ
You probably need to show some code.
Just by the dependencies you use its hard to tell.
Anyway, you should be able to use
:observeror:etopto find out which processes use up your precious CPU.shahryarjb
Thanks, how can I load those in server, not graphical desktop, because my code has the problem in my server.
I don’t know which my code or module has the problem that I show it here :((
NobbZ
You are running
:devenv on your server?:etopand:observerare both part of the:observerapplication. If you have it installed on your system a simple:observer.start()or:etop.start()should be enough.Just remote shell into your server and use them, that usually works. This means not SSH into server and then run iex, but to use
iex --name ... --cookie ... --remsh server@nodeto connect.shahryarjb
yes I was going to move it to production mode , but I saw the problem called,
Unfortunately, I didn’t understand how I can load in my server, would you mind giving me an example or explaining more?
NobbZ
For
:observeryou need to have wx-widgets installed. I never used it in a remote shell myself, but people told me it usually works. I can’t help you with that one.Have you been able to figure something out using
:etop?shahryarjb
because I was forced to load my project with
iex -S mix phx.server, I restarted my container. it will take 24 hours to come 20% , I’ll update this post soon.but now:
OvermindDL1
For note, dev mode will use more power than prod mode because it actively recompiles and scans and all sorts of things like that.
Your etop listing is showing nothing is using cpu at that moment though.