gen_server stands for "generic server", a module behaviour in Erlang.

learn more… | top users | synonyms

1
vote
1answer
95 views

How To Handle Files Opened Via An Erlang gen_server?

I've created a module which transparently handles certain files in completely different ways, acting as a replacement for Erlang's file:open/2 and the IoDevice/file descriptor it returns. In many ...
0
votes
2answers
51 views

Erlang Supervisor fail to start_child with no errors simple_one_for_one

the supervisor seems to fail silently starting child... Here's the supervisor -behaviour(supervisor). -export([start_socket/0, init/1, start_link/1]). -define(SSL_OPTIONS, [{active, once}, ...
0
votes
4answers
118 views

How can i change the callback module of a gen_server in erlang? (gen_server:swap_handler)

I am building an app which can run in two modes. A sandbox mode and a production one. In sandbox mode, i want to make many checks in my gen_server against the database : if table doesn't exist then ...
1
vote
2answers
72 views

How can I get beam size for Erlang?

I have a legacy Erlang program that needs optimizations. This piece of code uses up to 20G memory in run time. I'm wondering if there is a way to get the Erlang Beam size of the process itself in run ...
0
votes
2answers
141 views

erlang sockets and gen_server - no data received on server side

In a nutshell: I am trying to make a socket server to which clients connect and send/receive messages (based on the sockserv code in Learn you some erlang tutorial ...
2
votes
2answers
78 views

What happen if i erased process dictionary of gen_server module?

I was playing with the process dictionary inside a gen_server module, i called get() function and i get something like this. {'$ancestors',[main_server,<0.30.0>]}, ...
0
votes
2answers
165 views

Added supervisor(s) for a gen_server, shutdown immediately?

EDIT: Below. Why is my supervised gen_server shutting down so quickly? I'll give these organizational names to make it more clear the chain of command that I want in my application: First I'm ...
2
votes
1answer
104 views

why Erlang's Reason of termination is normal?

all the part of log : ** Reason for termination == ** {normal, {gen_server,call, [<0.9723.458>, {create_jtxn_mon, {player,34125,0,"gulexi", why does it report ...
0
votes
2answers
374 views

How does an Erlang gen_server start_link a gen_server on another node?

I have an Erlang application that is getting a little too resource-hungry to stay on one node. I'm in the process of making gen_servers move from one process to another - which turns out to be ...
4
votes
2answers
147 views

Erlang: how to get result from init() in gen_server

My init() function creates UDP Socket and Returns Socket value as a State. start() -> {ok, ServerPid} = gen_server:start_link(?MODULE, [], []). %%% gen_server API init([]) -> ...
1
vote
1answer
104 views

Is there any State variable in Mochiweb?

I have skimmed through the Mochiweb code, but have not found any sign of the State variable. Does something similar to gen_server's State variable exist in Mochiweb? I need to store some small ...
4
votes
1answer
235 views

Why my supervisor terminating?

I'm very new to OTP, I'm trying to create simple example to understand supervisor behaviour: Here is simple increment server -module( inc_serv ). -behaviour( gen_server ). -export( [ start/0, inc/1, ...
1
vote
1answer
187 views

Can my gen_server become a bottleneck?

I'm currently writing a piece of software in erlang, which is now based on gen_server behaviour. This gen_server should export a function (let's call it update/1) which should connect using ssl to ...
4
votes
1answer
147 views

Automatically reconnecting to a TCP host

TLDR: Does there exist reusable code for automatically reconnecting to a TCP server that sometimes fails? I'm writing a server application -- call it hal -- that also opens some TCP connections to ...
3
votes
4answers
255 views

What happens when a gen_server method gets called simultaneously by two clients?

I have a gen_server module that logs data to a file when a client process sends it data. What happens when two client processes send data at the same time to this module? Will the file operations ...
3
votes
2answers
210 views

Are there different priority in otp gen_server's info, call, cast message queue?

When writing codes, I ask myself which type of message should use call, which type of message should use info? Below this question, there is another long-time doubt whether there is priority ...
1
vote
1answer
345 views

Erlang Apple Push notification not getting response-error before disconnect

I'm currently testing a bit my push notification module. When the Device Token is invalid, it disconnects... According to Apple push notification developer documentation I should get an ...
2
votes
2answers
152 views

handle saving of transient gen_servers states when using a key-to-pid mechanism

I would like to know how to handle saving of transient gen_servers states when they are associated with a key. To associate keys with processes, I use a process called pidstore. Pidstore eventually ...
2
votes
2answers
216 views

Why is erlang io:format output being lost and what do I need to do to restore it?

I'm writing a gen_server, which we'll just call gen_server_db, with nothing too terribly special about it. There is a possibility that a library it uses (emysql) will experience a connection failure ...
1
vote
1answer
147 views

Erlang Tip&Tricks reducing memory footprint for gen_server ssl socket

Does anyone would have an idea on how to reduce memory footprint for an Erlang gen_server ssl socket oriented ? Right now each client (gen_server) has a something like 128 Ko in memory. while in C++ ...
2
votes
2answers
94 views

What happened if there is “record = State” in handle_call function?

The handle_call function in gen_server is : Module:handle_call(Request, From, State) -> Result But I meet one handle_call function like this: handle_call(info, _From, #yuv{decoder = undefined} ...
1
vote
1answer
347 views

Erlang supervisor. Restarting process, if it fails several times, give up and send message

I have several gen_server workers periodically requesting some information from hardware sensors. Sensors may temporary fail, it is normal. If sensor fails worker terminates with an exception. All ...
2
votes
1answer
392 views

Erlang + Apple Push notification [Issue with invalid token]

I'm currently trying to create a push notification module for Erlang. When the token is valid, everything works great... The issue is when an old device token (which is invalid by now) is rejected. I ...
1
vote
1answer
343 views

Monitoring a gen_server

I have been trying to monitor a gen_server using erlang:monitor/2. Unfortunately every time I try this the Erlang shell goes into an infinite loop. Here is the test program i've written to test this ...
1
vote
1answer
69 views

Setting state of a gen_server type application

I am trying to find out whether it is possible to start a gen_server with a given state. I would like to be able to set up a monitor/supervisor that restarts the server with its last valid state when ...
1
vote
1answer
214 views

how to transfer gen_server/gen_fsm from node to node

I would like to know what is the suggested way (if any) to move a gen_server/gen_fsm from erlang node A to erlang node B preserving its internal state.
0
votes
1answer
118 views

erlang timer gets timeout

I have an erlang module with behaviour gen_server. Now, I have: init(_Args) -> erlang:send_after(?PROCESS_STATE_INTERVAL,self(),processState), {ok, []}. and handle_info(processState, ...
1
vote
1answer
179 views

gen_server:call every X seconds

The Status of the gen_server is a list and should be processed once every X seconds. Therefore, I need to execute handle_call({process},State) every X seconds. What is the best way to have a ...
2
votes
2answers
849 views

Erlang gen_server with long-running tasks

Good day, I have gen_server process, which do some long-running state-updating tasks periodically in handle_info: handle_info(trigger, State) -> NewState = some_long_running_task(), ...
0
votes
2answers
386 views

Erlang: Spawn more than one process under a supervisor

I'm trying implement a simple supervisor and just have it restart child processes if they fail. But, I don't even know how to spawn more than one process under a supervisor! I looked at simple ...
0
votes
2answers
364 views

Erlang OTP supervisor

I'm working on Exercise 12-2 from the book Erlang Programming. I have a module db_server_otp that implements an OTP gen_server behavior. As a stand-alone module, I have tested it and it works as ...
1
vote
2answers
313 views

Erlang, process_flag trap_exit kills my gen_server from the CLI

I have this gen_server that I am working with: -module(user_info_provider). -export([start_link/0, stop/0]). -export([init/1, terminate/2, handle_info/2, handle_call/3, handle_cast/2, ...
4
votes
2answers
694 views

gen_server closing listening socket

What I'm trying to do is have a gen_server process accept a new client and immediately spawn a new child to handle the next one. The issue that I'm seeing is that when the socket is finished and ...
5
votes
1answer
329 views

How to describe gen_server visually?

Disclaimer: The author is a newbie in OTP having some basic knowledge of Erlang's syntax, processes and messages. I am trying to grasp the notion of behaviours in Erlang, but a lot of questions ...
0
votes
2answers
180 views

gen server synchronous and asynchronous calls

Suppose I have a gen_server that is handling only asynch calls (thus only handle_cast is implemented), should i keep handle_call and make it return only the generic ok value, or should i remove that ...
2
votes
2answers
270 views

Erlang: extended gen_server

I want to extend gen_server (create a gen_server_extra) with some additional functionality. The requirements are: The gen_server_extra processes should behave like a regular gen_server's. E.g, they ...
2
votes
3answers
317 views

is a gen_server is up?

Is there a way to tell a gen_server: "supervisor has initialised all gen_servers, now you can send then messages"? I have a worker gen_server whose job is to set up states of other gen_servers in his ...
3
votes
2answers
1k views

Erlang asynchronous message handling with gen_server:cast/2

I'm looking for good examples of Erlang asynchronous message handling with gen_server:cast/2. I've seen an example in the OTP ssh module, which receives a request through Module:handle_cast/2, ...
4
votes
1answer
838 views

when to use Gen_Fsm and when to use Gen_Server?

After checking out Gen_Fsm and Gen_Server documents, I found that, more or less, they act as similar behavior. In my opinion, if there is one loop function for sending broadcast or listening tcp sock, ...
2
votes
2answers
205 views

what kind of types can be sent on an erlang message?

Mainly I want to know if I can send a function in a message in a distributed erlang setup. on Machine 1 F1 = Fun()-> hey end, gen_server:call(on_other_machine,F1) on Machine 2 ...
2
votes
3answers
166 views

Resolving a dead lock between two gen_tcp

While browsing the code of an erlang application, I came across an interesting design problem. Let me describe the situation, but I can't post any code because of PIA sorry. The code is structured as ...
1
vote
2answers
425 views

How to test gen server in erlang?

I am a beginner with erlang, and i write a basic gen server program as follows, I want to know, how to test the server so i can know it works well. -module(gen_server_test). -behaviour(gen_server). ...
11
votes
4answers
2k views

How to perform actions periodically with Erlang's gen_server?

I want to start a gen_server that additionally, will perform one action every minute. What is the best way to schedule that?
1
vote
1answer
199 views

Erlang start gen_server blocked code

I have gen_server in my erlang code. And when i try to run it the next code after this don't work. For example: ....... my_server:start_link(). io:format("AAAAAAAAAAAAAAAAAAA"), ..... Now ...
1
vote
1answer
816 views

Erlang gen_server cast bad return value

I try to cast message to a gen_server: gen_server:cast({global, ID}, {watchers}). The handler is: handle_cast({watchers}, State) -> case State#table_state.watchers of [] -> ...
1
vote
1answer
530 views

Erlang cast message to global gen_server

it's continue of previos question I have gen_server: start(UserName) -> case gen_server:start({global, UserName}, player, [], []) of {ok, _} -> io:format("Player: " ++ UserName ...
1
vote
2answers
1k views

Erlang stop gen_server

I have gen_server: start(UserName) -> case gen_server:start({global, UserName}, player, [], []) of {ok, _} -> io:format("Player: " ++ UserName ++ " started"); {error, Error} ...
1
vote
1answer
409 views

How to always log/show the error reason when a supervisor child returns error from start_link?

When starting gen_server's from a supervisor (which itself is started by a application) I have the problem that when the start_link of the gen_server doesn't return {ok, ...} but {error, Reason} the ...
4
votes
2answers
1k views

Erlang: Best way for a singleton gen_server in erlang cluster?

Setting: I want to start a unique global registered gen_server process in an erlang cluster. If the process is stopped or the node running it goes down, the process is to be started on one of the ...
1
vote
1answer
771 views

Using an ets table for a gen_server state

I am writing a gen_server which I want to hold an ets table as a state, then ets table was created somewhere else. How should I add this to the state of the gen_server? I want to use the ets table ...

1 2