Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
483 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?
6
votes
1answer
280 views

Erlang Supervisor Strategy For Restarting Connections to Downed Hosts

I'm using erlang as a bridge between services and I was wondering what advice people had for handling downed connections? I'm taking input from local files and piping them out to AMQP and it's ...
5
votes
1answer
167 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 ...
4
votes
2answers
562 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 ...
4
votes
1answer
258 views

Getting gen_server/gen_fsm state for debugging

Is it possible to obtain the current state of a gen_server process (presumably by sending some system message)? It could be useful when debugging. Of course, I can add a message which returns the ...
4
votes
2answers
1k views

erlang OTP Supervisor crashing

I'm working through the Erlang documentation, trying to understand the basics of setting up an OTP gen_server and supervisor. Whenever my gen_server crashes, my supervisor crashes as well. In fact, ...
3
votes
2answers
343 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, ...
3
votes
1answer
259 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
82 views

Erlang gen_server with long-lunning 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(), ...
2
votes
2answers
152 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 ...
2
votes
2answers
104 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
153 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 ...
2
votes
2answers
104 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
106 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 ...
2
votes
3answers
185 views

Transient gen_server processes and updating pids

I'm currently learning Erlang at a reasonable clip but have a question about gen_server with supervisors. If a gen_server process crashes and is consequentially restarted by a supervisor, it receives ...
2
votes
1answer
332 views

Priority send and receive

I have a problem that I wonder if it can be efficiently implemented in ERLANG. I have a bunch of nodes communicating with each other using a protocol that adds priority information to messages. I ...
2
votes
3answers
197 views

bad_application error starting erlang gen_server application

I have written a simple erlang app using gen_server. When starting it with application:start(myapp), I get the following tuple... {error,{bad_application,{appliction,myapp ... (rest of my ...
2
votes
1answer
714 views

gen_server with a dict vs mnesia table vs ets

I'm building an erlang server. Users sends http requests to the server to update their status. The http request process on the server saves the user status message in memory. Every minute the server ...
1
vote
2answers
128 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, ...
1
vote
2answers
172 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). ...
1
vote
1answer
282 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
212 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
313 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
206 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 ...
1
vote
1answer
432 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
vote
5answers
520 views

Erlang: gen_server or my own custom server?

I need to write a server that will receive instructions from other modules and take actions depending on the instructions received. Efficiency is my main concern. So do I use gen_server or do I write ...
0
votes
1answer
20 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 ...
0
votes
2answers
102 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
93 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 ...
0
votes
2answers
81 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 ...
0
votes
1answer
129 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 ...