drewble
With several Phoenix apps clustered with libcluster, it’s easy to make calls to remote nodes via :erpc.
Say I have two different public-facing apps, and one needs to fetch data from the other to serve requests. Is it a reliable pattern to use :erpc for this relationship? Are there known limitations or performance hits for concurrent requests over :erpc?
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
Other Trending Topics
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
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
D4no0
To be fair I’m not a big fan of doing rpc calls without a predefined contract, that can be enforced on both ends, it is just too easy to break the contract by accident.
IMO a monolith that has good separation of code will be times more easier to manage than those 2 separate services trying to communicate via rpc.
drewble
The plan is to define a tested and documented API for use by
:erpccalls for exactly that reason. We have domain reasons for maintaining separate apps.Architectural concerns aside, are there known limitations or performance hits for concurrent requests over :erpc?
D4no0
Have you read the introduction paragraph for erpc? I guess this is an important pointer that is presented there: Processes — Erlang System Documentation v29.0.2
tj0
I’ve only used :rpc (or software that used rpc, erpc looks like a newer version) and I’ve never really hit limits on this. The situation was:
I don’t think there’s any reason not to use it? The alteratives aren’t that great either. Spending cpu serializing/deserializing json over http? After seeing 25% of the cpu going to parsing, deciding to go to a binary format like messagepack? As long as everything is trusted, single datacenter, and no reason to talk to non-BEAM languages, why not use the standard protocol? For instance, I never had any issues with riak clusters and I can’t think of any application that would be more chatty.
Then on modern hardware, I don’t think it will be very easy to hit the limits. Anyway, for further information:
Personally, I would be more concerned about security and the introduction of other languages than the scale in most situations.
drewble
@D4no0 I have read the introduction paragraph. I have also read the note about blocking signals, although I can’t say I totally understand it.
@tj0 there is a line in the introduction to
:erpcthat says it “has better performance and scalability than the original rpc implementation” but with no implementation details. Based on the paper you linked, it appears even the original:rpcwould be scalable enough for our current needs. It’s good to know thatNode.spawn/4is there if we do hit some of those bottlenecks.drewble
Looking into this more,
erpcis significantly different thanrpc. The issue that is commonly raised is that the originalrpcimplementation relied on a single GenServer process namedrexto handlerpccalls. This causes performance degradation under high call volumes due to mailbox flooding. The charts in the DE-Bench PDF above indicate that usingspawninstead ofrpcis not subject to the same limits, as it spins up a new process per-call.erpcbasically builds the alternative approach into the Erlang kernel, usingspawn_requestto make that actual request to the remote node as mentioned in the Kernel 7.0 release notes and found in the Erlangerpcimplementation.rexis entirely absent from the:erpcimplementation, andrpcitself now relies onerpcfor many operations, likely for this reason.The theoretical limitations of
erpcmay be the port blocking described in thegen_rpclibrary README. For the purposes of usingerpcto make intra-cluster API calls with reasonably sized response payloads, this is probably not an issue.julismz
You could face this with structs or even with Apache AVRO’s schemas, couldn’t you?
Sanjer
Thanks @drewble for this.
I am exploring to build a highly concurrent request-response system, using new erpc. Your findings helps me, get guided into right direction.
Any lessons learnt, if you have used erpc already in production.
If you could share, which may help us?