clemensm

clemensm

Hi there

I’ve run into a really strange problem in one of my apps recently, which I sadly cannot reproduce reliably but do see from time to time in :dev and :prod environments.

So I’ve got an app where users can create “cards” with some content on them, and we’ve got a list of all cards the user owns where he can search for his cards. The searches can be quite complicated, so what we’ve implemented is that the search request is send to the server which performs the search and then sends back the result in form of rendered html as a string. The result itself is sent using a channel called “search:unique_identifier_for_each_search_instance”, to which the client subscribes on loading of the app. The html is then received on the client and the current table with the results is replaced with the received new result.

This all is a bit more complicated then necessary, but a lot of this functionality has grown over time, so for now it is what it is :slight_smile:

Now the socket that the channel belongs to hosts multiple channels, e.g. another one is “alert:user_id” in order to send the user information if something goes wrong, of ir new cards are received from other users, just in case this might be important.

So finally the problem: Usually all this works fine, but from time to time what can happen is, that if the user navigates back in the browser (the frontend is an SPA, so the socket is not remounted), suddenly the search results are no longer sent to the client. Instead I get an error like this:

[warning] Phoenix.Channel.Server #PID<0.1296.0> received unexpected message in handle_info/2: 
{:new_result,   lots_of_html_here_that_is_truncated ......

So looking into the code of Phoenix.Channel.Server I found the place that triggers the message, and this only happens if function_exported?(MyApp.Channel.Search, :handle_info, 2) returns false. However the MyApp.Channel.Search module does actually export that function.

Next luck would have it that I triggered this error shortly afterwards while running the server using iex -S phx.server, and quickly checking the output of function_exported?(MyApp.Channel.Search, :handle_info, 2) in the console manually, the call does indeed return false. However after some digging around and trying it again, it now returns true, and the search also starts working as expected again. Also if I try function_exported?(MyApp.Channel.Search, :handle_info, 2) directly after starting the server, it also always returns true.

Does anyone have any idea how this can happen?

Thanks for your time already :smile:

Showing Posts 1 to 3

derek-zhou

derek-zhou

Are you running a release? With a release, the BEAM is in the embedded mode and barring from hot code reloading, the function_exported? shall always return the same value.

Iex is interactive mode, so the code may not be loaded, if no one has called any function in that module.

clemensm

clemensm OP

Hmm, I had the same thought yesterday. After checking the log files on the server I could actually not find the same error message, but I’m not sure if some sort of similiar problem still exists because in Phoenix.Channel.Server the logs are written using the Erlang :error_logger instead of the Elixir Logger. I’m just not sure if those logs are captured as well, but I’d guess so.

I’ll continue investigating on :prod, though I still don’t understand why in the :dev environment sometimes the function ceases to be exported…

clemensm

clemensm OP

Ok, I did some more investigating and it seems that @derek-zhou is correct in his answer above, thanks again. In :prod the error is not being logged, so I guess on :prod the issue is triggered by something else…

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews