Tagged Questions

OTP is the open source distribution of Erlang and an application server written in Erlang. (For the one-time passwords, please use one-time-password tag instead)

learn more… | top users | synonyms

9
votes
4answers
378 views

Concurrency: Processes vs Threads

What are the main advantages of using a model for concurrency based on processes over one based on threads and in what contexts is the latter appropriate?
9
votes
2answers
1k views

When to use gen_server in Erlang/OTP applications

Having read Joe Armstrong's book and watched Kevin Smith screencasts I've built a simple OTP application comprised of a single gen_server and single supervisor, bundled together as an OTP application. ...
8
votes
1answer
389 views

How do you design the architecture of an Erlang/OTP-based distributed fault-tolerant multicore system?

I would like to build an Erlang/OTP-based system which solves an 'embarassingly parrallel' problem. I have already read/skimmed through: Learn You Some Erlang; Programming Erlang (Armstrong); ...
8
votes
3answers
522 views

Building a commercial system: Pure Erlang or Erlang/OTP?

I am about to build a system with Erlang (my problem can be solved better with multiple CPUs) and I have skimmed through: Learn You Some Erlang; Erlang/OTP in Action Programming Erlang (Armstrong); ...
8
votes
2answers
761 views

Starting remote Erlang nodes

I want to write a master-slave application in Erlang. I am thinking at the following things I need from the architecture: the slaves shouldn't die when the master dies, but rather try to reconnect ...
7
votes
1answer
258 views

Do we have Akka/Scala equivalents for the OTP behaviors?

I'm currently estimating a new project which is related to message routing and logging. I found OTP's abstractions like event and server pretty useful for it. But due to non-technical reasons this ...
7
votes
2answers
286 views

Erlang workflow

How do you organize your erlang workflow? I'm learning some Erlang now and I'm using Rebar, recompiling, rebuilding and restarting an entire release (I'm trying to keep things OTP'ish) after each ...
7
votes
1answer
215 views

How to design a flexible Erlang protocol stack creation API

Unsatisfied with my current approach I'm just trying to redesign the way I build protocol stacks in Erlang. The feature ordered by importance: Performance Flexibility and implementation speed ...
7
votes
1answer
343 views

How do I do an HTTPS request with Erlang?

I tried the inets library but it times out. I don't think it supports HTTP. I am trying to use ibrowse, but it isn't working.
6
votes
3answers
202 views

Using the same AES key for CBC and ECB

Overview I'm trying to come up with a way for a server and client to be able to generate a unique IV for each request that is both different for every client and yet deterministic. What I mean by ...
6
votes
1answer
199 views

Erlang: Distributed Application Strange behaviour

I'm paying with distributed erlang applications. Configuration and ideas are taken from: http:/www.erlang.org/doc/pdf/otp-system-documentation.pdf 9.9. Distributed Applications We have 3 nodes: ...
6
votes
2answers
849 views

What's the best way to do something periodically in Erlang?

I have a process that needs to do some work every fifteen seconds. I'm currently doing it like this: -behavior(gen_server). interval_milliseconds ()-> 15000. init()-> {ok, ...
5
votes
1answer
315 views

Good practices when developing an application in Erlang (and Riak)?

We are in the process of getting familiar with Erlang/OTP and Riak (Core, KV, Pipe, and so on) in view of developing an open-source distributed application in turn. Our project is going to have a ...
5
votes
2answers
295 views

Why use OTP with erlang?

As the question said: What benefits brings using the OTP design principles when developing with erlang? (I am developing a server which will just receive commands and send responses)
5
votes
2answers
447 views

What's the best way to run a gen_server on all nodes in an Erlang cluster?

I'm building a monitoring tool in Erlang. When run on a cluster, it should run a set of data collection functions on all nodes and record that data using RRD on a single "recorder" node. The current ...
5
votes
1answer
165 views

Registering a child in the process that initiated the start_child call

I have a logic module that tells a supervisor to start child processes. I need to store those childrens pid in the logic modules state. But I also need to update a childs pid if the supervisor ...
5
votes
3answers
472 views

Java to Erlang messages

I'm making a application in Erlang, with a GUI in Java. I've managed to establish a connection between the to languages, but now i need to (i guess) send a message from Java to Erlang, every time I ...
4
votes
2answers
179 views

Using OTP/Erlang as a part of the component-based architecture of a web application

I have an Erlang/OTP application which does some business logic. It is written in Erlang mostly for fault-tolerance, because I can easily restart one of the crashed components of the system (high ...
4
votes
2answers
107 views

Erlang supervisor: how to check if all the workers have replied

I have a supervisor with N worker processes. As usual the supervisor can send a message to a worker process and there is a handle_cast that sends a reply from a worker to the supervisor. How can I ...
4
votes
5answers
513 views

Erlang/OTP behaviors for beginner

As I understood from the "Erlang and OTP in action" book, the word behavior refers to: the behaviour interface, which is a set of functions; the behaviour implementation, which is the ...
4
votes
3answers
533 views

Erlang OTP application design

I am struggling a little coming to grips with the OTP development model as I convert some code into an OTP app. I am essentially making a web crawler and I just don't quite know where to put the ...
4
votes
2answers
584 views

Erlang: starting a remote node programmatically

I am aware that nodes can be started from the shell. What I am looking for is a way to start a remote node from within a module. I have searched, but have been able to find nothing. Any help is ...
4
votes
1answer
153 views

Erlang: How can I remove a node from other nodes' nodes()?

I want to simulate the behavior of erl -sname example -hidden but dynamically. How can I drop a node out of visibility in a cluster? See the comments by @mwt at @Yasir Arsanukaev for additional ...
4
votes
2answers
993 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, ...
4
votes
2answers
264 views

Using gen_server to encapsulate an mnesia table?

I have a server application made in Erlang. In it I have an mnesia table that store some information on photos. In the spirit of "everything is a process" I decided to wrap that table in a ...
4
votes
1answer
398 views

In erlang/OTP how do I start appmon to monitor an existing node?

I have a running erlang application, launched with this command line erl -boot start_sasl -config config/cfg_qa -detached -name peasy -cookie peasy -pa ./ebin -pa ./ebin/mochiweb -s peasy start If ...
4
votes
6answers
2k views

Erlang : Disallowed Nodes / Maybe Cookie question

Trying to get two erlang nodes talking to each other : one on a Ubuntu machine and one on Windows XP. We're getting a "Connection attempt from disallowed node" message which prevents one node ...
4
votes
6answers
1k views

Accessing Erlang business layer via REST

For a college project i'm thinking of implementing the business layer in Erlang and then accessing it via multiple front-ends using REST. I would like to avail of OTP features like distributed ...
3
votes
2answers
105 views

What OTP behaviors should I use for this?

I've got a server that accepts TCP connections (a gen_server using gen_tcp) and for each connection it spawns a supervisor. That supervisor (supervised by another, more permanent supervisor) then ...
3
votes
1answer
202 views

Are Erlang message queues persistent across processes?

This should be a simple question, but I don't know my way around the documentation well enough to find the answer. If an OTP supervisor restarts a gen_server after it has crashed, does the new child ...
3
votes
1answer
157 views

Handling the cleanup of the gen_server state

I have a gen_server running which it must clean up its state whenever it is stopped normally or it crash unexpectedly. The cleanup basically consists in deleting a few files. At this moment, when the ...
3
votes
1answer
122 views

Erlang/OTP: Changes to the already existing modules

I am working over solution to a problem, which requires changes in one of the functions of module gb_trees. I am getting an error compiling the edited version of gb_trees: 1> c(gb_trees). cannot ...
3
votes
2answers
465 views

Erlang: supervisor(3), adding a child process

Where can I find example on how to add dynamic child processes to an existing supervisor (simple_one_for_one restart strategy) ?
3
votes
1answer
204 views

limitation of the reception buffer

I established a connection with a client this way: gen_tcp:listen(1234,[binary,{packet,0},{reuseaddr,true},{active,false},{recbuf,2048}]). This code performs message processing: loop(Socket)-> ...
3
votes
1answer
348 views

What is an Erlang Design pattern that for “Process as Message” work queue?

I'm trying to figure out a design pattern that was mentioned in an erlang talk. Essentially the speaker mentions using a work queue using a "message as a process" rather then using the job as a ...
3
votes
2answers
242 views

How do I create and use (or simulate) multi-column indexes in Erlang Mnesia

I have looked through the Mnesia documentation and the 3 popular Erlang books. It seems only single column primary and secondary indexes can be created and used. Or maybe it is just what the examples ...
3
votes
1answer
73 views

Meaning of error tuple message when calling start_child/2

I get the following error tuple back when calling start_child/2 {error, {{[],[]}, {child,undefined,"i.file_man", {sg_file_mgr,start_link, ["i.file", ...
3
votes
1answer
81 views

Ensuring an event is handled while switching gen_event handlers in Erlang/OTP

Let's say I have several versions of a gen_event handler and want to change them around while the program is running: -module(logger_all). -behaviour(gen_event). -export([init/1, handle_event/2, ...
3
votes
3answers
302 views

Erlang/OTP framework's error_logger hangs under fairly high load

My application is basically a content based router which will route MMS events. The logger I am using is the one that comes with the OTP framework in SASL mode "*error_logger*" The issue is :: I am ...
3
votes
3answers
289 views

Erlang application launch on a Windows server

I have an Erlang application that is deployed on a server with Windows Server 2008. The way I do this: Copy application folder in Erlang lib directory. Open command line (cmd). Execute erl. Execute ...
3
votes
1answer
184 views

Allowing a gen_fsm to timeout if it receives no messages

Normally if I'd like to have an Erlang process timeout I would use the following construct: receive Msg -> ok; %% handle message after 60000 -> %% Handle timeout and exit end. Is ...
3
votes
2answers
722 views

How build non-blocking TCP server with ssl encryption

Non-blocking TCP server on trapexit.org explains how to build server based on tcp_gen, but i want to modify this example and make it work with ssl. For now i have completely no idea how to replace ...
3
votes
4answers
2k views

Process balancing in Erlang

Does anybody knows if there is a sort of 'load-balancer' in the erlang standard library? I mean, if I have some really simple operations on a really large set of data, the overhead of constructing a ...
2
votes
0answers
66 views

Doing an “offline” erlang OTP release upgrade

I'm working on a project that deals heavily with OTP releases and their upgrade process. I managed to perform hot upgrades from a release upgrade archive (tar.gz) using release_handler functions ...
2
votes
2answers
76 views

How do you represent multi-process logical entities in OTP?

Imagine we have the following problem: We have http clients that execute requests to our software. So we have one process that is always available to them and stores their requests in a queue. We ...
2
votes
1answer
90 views

Robust process keeper for Erlang app

My Erlang app will create up to 1'000'000 processes. Each process will be a gen_server. From time to time each process will get some messages. I am looking for a robust process keeper for my Erlang ...
2
votes
0answers
187 views

Mnesia Fragmentation and replication: resultant availability and reliability

Following the solutions to the question i asked recently about mnesia fragmentation, I still have a number of challenges. Consider the following scenario (The question I am asking is based on what ...
2
votes
1answer
110 views

Where should I put my static text files in order to be OTPy?

I'm building a server with cowboy, and I've got some static HTML pages that I want to serve. Is there an OTP friendly place to put that sort of thing? Is there an established way to tell rebar where ...
2
votes
1answer
99 views

Is it possible implement Pregel in Erlang without supersteps?

Let's say we implement Pregel with Erlang. Why do we actually need supersteps? Isn't it better to just send messages from one supervisor to processes that represent nodes? They could just apply the ...
2
votes
1answer
103 views

Rate-limited event handler in erlang/OTP

I have a data source that produces point at a potentially high rate, and I'd like to perform a possibly time-consuming operation on each point; but I would also like the system to degrade gracefully ...

1 2 3