active questions tagged erlang - Stack Overflow most recent 30 from stackoverflow.com 2010-02-09T23:42:02Z http://stackoverflow.com/feeds/tag/erlang http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2230088/a-simple-explanation-of-rings-in-riak 0 A simple explanation of Rings in Riak? Zubair 2010-02-09T15:16:51Z 2010-02-09T21:10:29Z <p>I'm trying to understand what the "rings" in Riak are, but I can't seem to find a clear explanation (please don't just link me to a web site, I have already read what is on the web). As far as I understand a node in Riak is a partition in a ring. Is that correct?</p> http://stackoverflow.com/questions/2197987/how-can-i-install-riak-on-several-remote-nodes-using-hot-code-loading 0 How can I install Riak on several remote nodes using hot code loading? Zubair 2010-02-04T07:20:51Z 2010-02-09T17:56:42Z <p>I have been learning Riak on a single machine and have access to a cluster of Erlang nodes (on Ubuntu 9). Using remote code loading how do I install Riak onto all the remote nodes?</p> <p>For example, imagine I have a cluster of Erlang nodes. One of the nodes has Riak installed. Can I do something like nl(riak) to install Riak onto the other nodes.</p> http://stackoverflow.com/questions/2231217/make-doesnt-work-for-erlang-5-7-4-on-solaris 0 Make doesn't work for Erlang 5.7.4 on Solaris? Zubair 2010-02-09T17:53:49Z 2010-02-09T17:55:17Z <p>Has anyone managed to build Erlang on OpenSolaris? Every time I try I get:</p> <p>user@opensolaris:~/otp_src_R13B03# make clean make: Fatal error in reader: Makefile, line 94: Badly formed macro assignment</p> http://stackoverflow.com/questions/2231061/is-there-an-erlang-oscmd-equivalent-that-takes-a-list-of-strings-instead-of-a-si 3 Is there an Erlang os:cmd equivalent that takes a list of strings instead of a single command? me2 2010-02-09T17:29:52Z 2010-02-09T17:29:52Z <p>Is there a Erlang call where I can do <code>Retval = subprocess:call(["cmd", "arg1", "arg2", "arg3"])</code>?</p> <p>If I'm building a complex command to execute, with os:cmd/1 it is easy to make escaping mistakes. Compare to Python's subprocess.call() method where I pass in a list of strings and know that it is passed verbatim to the subprocess, nothing mangled.</p> <p>Thanks.</p> http://stackoverflow.com/questions/2231003/erlang-atoms-and-tuples-in-thrift 2 Erlang atoms and tuples in Thrift Roberto Aloi 2010-02-09T17:19:08Z 2010-02-09T17:19:08Z <p>Which is the corresponding Thrift type for:</p> <ul> <li>an Erlang tuple (I can imagine it's a struct)</li> <li>an Erlang atom (if any?)</li> </ul> <p>Is there any documentation available with the direct mappings between the Erlang types and the Thrift IDL types?</p> http://stackoverflow.com/questions/2199368/why-did-you-decide-against-using-erlang 29 Why did you decide "against" using Erlang? Zubair 2010-02-04T11:52:34Z 2010-02-09T14:56:47Z <p>Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to use another functional language like F#, Haskell, Clojure, Scala, or something else then this counts too, and state why.</p> http://stackoverflow.com/questions/2228278/how-to-control-number-of-running-worker-processes 0 How to control number of running worker processes ? Konstantin 2010-02-09T10:23:39Z 2010-02-09T10:45:14Z <p>What is a design pattern in erlang in terms of gen_server to create a fixed number of worker processes and feed them with 'jobs' to perform some actions ? Each worker process talks with an external service which has connection limits. Number of 'jobs' considered to be unlimited. In C I'd do that by creating a pool of worker threads and an async. queue (with limited capacity) guarded by mutex to feed the pool with jobs from the submitter.</p> http://stackoverflow.com/questions/2223152/how-does-tdd-compare-with-functional-programming-languages 1 How does TDD compare with Functional Programming Languages? leeand00 2010-02-08T16:39:57Z 2010-02-09T02:43:17Z <p>How does TDD compare with Functional Programming Languages like F# and Erlang?</p> <p>I haven't actually worked directly with a functional programming language yet, but from what I've seen of it, you have two sides of an equation and they have to balance like in algebra or accounting; this seems somewhat reminiscent of TDD where you define your expected outputs as Assert statements (one side of the equation) and the rest of the functionality goes into a class decoupled from the test (the other side of the equation), except that functional programming IMHO seems a bit cleaner. </p> <p>Do the two actually have similarities, or am I just overthinking this a bit?</p> http://stackoverflow.com/questions/2126630/erlangs-maximum-number-of-simultaneous-open-ports 5 Erlang's maximum number of simultaneous open ports? ckovacs 2010-01-24T10:04:30Z 2010-02-08T22:20:03Z <p>Does the erlang TCP/IP library have some limitations? I've done some searching but can't find any definitive answers.</p> <p>I have set the ERL_MAX_PORTS environment variable to 12000 and configured Yaws to use unlimited connections.</p> <p>I've written a simple client application that connects to an appmod I've written for Yaws and am testing the number of simultaneous connections by launch X number of clients all at the same time.</p> <p>I find that when I get to about 100 clients, the Yaws server stops accepting more TCP connections and the client errors out with</p> <pre> Error in process with exit value: {{badmatch,{error,socket_closed_remotely}} </pre> <p>I know there must be a limit to the number of open simultaneous connections, but 100 seems really low. I've looked through all the yaws documentation and have removed any limit on connections.</p> <p>This is on a 2.16Ghz Intel Core 2 Duo iMac running Snow Leopard.</p> <p>A quick test on a Vista Machine shows that I get the same problems at about 300 connections.</p> <p>Is my test unreasonable? I.e. is it silly to open 100+ connections simultaneously to test Yaws' concurrency?</p> <p>Thanks.</p> http://stackoverflow.com/questions/2199313/how-does-scala-scale-on-a-cluster 3 How does Scala scale on a cluster? Zubair 2010-02-04T11:43:26Z 2010-02-08T19:38:28Z <p>I have been learning Erlang, but also I'm keeping my eyes open to other technologies such as Scala. Does anyone know how Scala's multi node performance compares to Erlang?</p> http://stackoverflow.com/questions/2220878/how-to-visualize-an-erlang-gen-fsm 4 How to visualize an Erlang gen_fsm Roberto Aloi 2010-02-08T10:25:16Z 2010-02-08T16:30:10Z <p>Do you know of any existing tool to graphically render the diagram of an Erlang gen_fsm starting from the source code?</p> http://stackoverflow.com/questions/2220991/how-to-set-up-a-yaws-yapp 0 How to set up a Yaws yapp? Jan Algermissen 2010-02-08T10:48:19Z 2010-02-08T14:37:57Z <p>Hi,</p> <p>I am struggling with setting up a yapp for Yaws. Can anyone provide a link to documentation or copy paste a short example here?</p> <p>Sorry that this is a rather unspecific question, but I am more or less lost :-)</p> <p>Thanks, Jan</p> http://stackoverflow.com/questions/2206933/how-to-write-a-simple-webserver-in-erlang 1 How to write a simple webserver in Erlang? Zubair 2010-02-05T11:48:55Z 2010-02-08T03:42:06Z <p>Using the default Erlang installation what is the minimum code needed to produce a "Hello world" producing web server?</p> http://stackoverflow.com/questions/2214954/is-f-really-faster-than-erlang-at-spawning-and-killing-processes 21 Is F# really faster than Erlang at spawning and killing processes? Tristan 2010-02-06T22:15:37Z 2010-02-07T07:04:56Z <p><em>Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the results in another question.</em></p> <p>I am trying do understand the performance characteristics of Erlang and F#. I find Erlang's concurrency model very appealing but am inclined to use F# for interoperability reasons. While out of the box F# doesn't offer anything like Erlang's concurrency primitives -- from what I can tell async and MailboxProcessor only cover a small portion of what Erlang does well -- I've been trying to understand what is possible in F# performance wise.</p> <p>In Joe Armstrong's Programming Erlang book, he makes the point that processes are very cheap in Erlang. He uses the (roughly) the following code to demonstrate this fact:</p> <pre><code>-module(processes). -export([max/1]). %% max(N) %% Create N processes then destroy them %% See how much time this takes max(N) -&gt; statistics(runtime), statistics(wall_clock), L = for(1, N, fun() -&gt; spawn(fun() -&gt; wait() end) end), {_, Time1} = statistics(runtime), {_, Time2} = statistics(wall_clock), lists:foreach(fun(Pid) -&gt; Pid ! die end, L), U1 = Time1 * 1000 / N, U2 = Time2 * 1000 / N, io:format("Process spawn time=~p (~p) microseconds~n", [U1, U2]). wait() -&gt; receive die -&gt; void end. for(N, N, F) -&gt; [F()]; for(I, N, F) -&gt; [F()|for(I+1, N, F)]. </code></pre> <p>On my Macbook Pro, spawning and killing 100 thousand processes (<code>processes:max(100000)</code>) takes about 8 microseconds per processes. I can raise the number of processes a bit further, but a million seems to break things pretty consistently.</p> <p>Knowing very little F#, I tried to implement this example using async and MailBoxProcessor. My attempt, which may be wrong, is as follows:</p> <pre><code>#r "System.dll" open System.Diagnostics type waitMsg = | Die let wait = MailboxProcessor.Start(fun inbox -&gt; let rec loop = async { let! msg = inbox.Receive() match msg with | Die -&gt; return() } loop) let max N = printfn "Started!" let stopwatch = new Stopwatch() stopwatch.Start() let actors = [for i in 1 .. N do yield wait] for actor in actors do actor.Post(Die) stopwatch.Stop() printfn "Process spawn time=%f microseconds." (stopwatch.Elapsed.TotalMilliseconds * 1000.0 / float(N)) printfn "Done." </code></pre> <p>Using F# on Mono, starting and killing 100,000 actors/processors takes under 2 microseconds per process, roughly 4 times faster than Erlang. More importantly, perhaps, is that I can scale up to millions of processes without any apparent problems. Starting 1 or 2 million processes still takes about 2 microseconds per process. Starting 20 million processors is still feasible, but slows to about 6 microseconds per process.</p> <p>I have not yet taken the time to fully understand how F# implements async and MailBoxProcessor, but these results are encouraging. Is there something I'm doing horribly wrong?</p> <p>If not, is there some place Erlang will likely outperform F#? Is there any reason Erlang's concurrency primitives can't be brought to F# through a library?</p> <p>EDIT: The above numbers are wrong, due to the error Brian pointed out. I will update the entire question when I fix it.</p> http://stackoverflow.com/questions/2183280/sharing-model-definitions-between-erlang-and-rails-and-mongodb 3 Sharing model definitions between Erlang and Rails (and mongodb) Mark Quezada 2010-02-02T10:23:51Z 2010-02-07T00:16:42Z <p>I have a rails app using mongodb through mongomapper and all is well. The problem is... I'm going to want to use erlang to do some background processing and I want to update the same mongo/mongomapper models with the results of this processing. What's the best way to share model definitions between the two apps (rails and erlang) and remain sane? Seems like it would be problematic to try to manage them separately if they're both accessing the same records. If there's no "good" way, am I simply approaching this the wrong way?</p> <p>Additional info: I was originally doing the background processing using starling/workling clients. This is nice since I could use all of the same rails models and code. Performance was terrible though so I'm looking to erlang to solve some of the efficiency problems. It's a large amount of data being processed, but it can be easily processed in parallel.</p> <p>I'm trying to avoid using erlang as the sole mediator between mongodb and rails through a rest or thrift interface.</p> <p><strong>Edit:</strong> I wanted to shine a little more light on this. The erlang processing will need to know a little bit about the models beforehand. I'm basically using erlang to pull data from other places and fill in details of the model objects. So, for example, there may be a description field that I'm scraping from an xml file using xmerl_xpath:string("//description/text()"). I need to be able to add methods like this that will act upon fields of the model.</p> http://stackoverflow.com/questions/2151066/couchdb-hovercraft-installation 0 couchdb hovercraft installation deepblue 2010-01-27T23:17:07Z 2010-02-06T19:03:29Z <p>hello all<br> Im about to start using couchdb directly from erlang, and have been reading the hovercraft APi for some time... today I sat down to actually install it and have realized that there's hardly any documentation out there that deals with how to go about doing it...<br> there is a very brief instruction here:<br> <a href="http://github.com/sendtopms/hovercraft#readme" rel="nofollow">http://github.com/sendtopms/hovercraft#readme</a></p> <p>how does one go about packaging this with their app?<br> hovercraft git readme instructions are a bit vague.<br> I poked around couchdb's startup scripts and found the command that actually runs erlang and initializes its module path, along with initial commands (-eval) that initialize couchdb. it is all in /usr/local/bin/couchdb (on my standard couchdb 0.10.1 install - Im aware that hovercraft works with 0.11 only). Either way, the command is at line 217... </p> <p>so my thought is to perhaps append this command with appropriate paths/initializations of my own application modules (.beam). appending is via '-pa' command line flag, and then initialization of custom app would be appended after the last '-eval'. </p> <p>this will definitely work but I was wondering if there's a less invasive way of integrating hovercraft/custom apps with couchdb in the same VM. </p> <p>Im trying to be pretty specific here, my previous iteration of this question was too vague and broad. </p> <p>thanks</p> http://stackoverflow.com/questions/2207384/configuring-erlang-to-work-with-ssl 1 Configuring Erlang to work with SSL scooterman 2010-02-05T13:14:35Z 2010-02-06T18:08:37Z <p>Erlang version: R13B01</p> <p>Currently I'm struggling trying to make Erlang work with SSL. The programming part was easy, but now starting the system SSL-enabled is not.</p> <p>Following the <a href="http://www.erlang.org/doc/apps/ssl/ssl_distribution.html" rel="nofollow">Erlang SSL documentation</a>:</p> <p>1 - Made the start_ssl.rel file</p> <pre><code>{release, {"OTP APN 181 01","R13B01"}, {erts, "5.7.2"}, [{kernel,"2.13.2"}, {stdlib,"1.16.2"}, {sasl,"2.1.6"}, {os_mon,"2.2.2"}, {ssl,"3.10.3"}]}. </code></pre> <p>2 - Executed the following command </p> <pre><code>1&gt; systools:make_script("start_ssl",[]). </code></pre> <p>According to the documentation, running the shell would output this (this output is from docs, not mine):</p> <pre><code>$ erl -boot /home/me/ssl/start_ssl Erlang (BEAM) emulator version 5.0 Eshell V5.0 (abort with ^G) 1&gt; whereis(ssl_server). &lt;0.32.0&gt; </code></pre> <p>But, I'm receiving this instead:</p> <pre><code>erl -boot start_ssl Erlang R13B01 (erts-5.7.2) [source] [smp:2:2] [rq:2] [async-threads:0] [kernel-poll:false] 1&gt; whereis(ssl_server). undefined 2&gt; </code></pre> <p>So, for now, the remaining steps are failing too. Sadly, there is no documentation nor forum threads around the web with the same issue.</p> <p>Any tips?</p> http://stackoverflow.com/questions/2207451/erlang-compilation-mixed-of-hipe-object-code-and-opcode 2 Erlang compilation: mixed of "HiPE object code" and "opcode"? jldupont 2010-02-05T13:27:40Z 2010-02-06T10:15:25Z <p>Is it possible to have a VM instance that executes both HiPE code and the usual "opcode" based objects at the same time?</p> <p>This question is related to : <a href="http://stackoverflow.com/questions/2207360/erlang-otp-release-compiles-with-hipe">http://stackoverflow.com/questions/2207360/erlang-otp-release-compiles-with-hipe</a></p> http://stackoverflow.com/questions/2207481/what-are-the-constraints-limitations-of-compiling-with-native 3 What are the constraints/limitations of compiling with "+native" ? jldupont 2010-02-05T13:31:01Z 2010-02-06T10:07:53Z <p>What are the limitations/constraints when compiling Erlang <code>.erl</code> source with the <code>+native</code> option compared with the usual "non native" compilation?</p> <p>Related to: <a href="http://stackoverflow.com/questions/2207360/erlang-otp-release-compiles-with-hipe">http://stackoverflow.com/questions/2207360/erlang-otp-release-compiles-with-hipe</a></p> http://stackoverflow.com/questions/2205835/functional-language-implementations-of-production-grade-data-stores 3 Functional language implementations of Production Grade data stores Zubair 2010-02-05T08:19:59Z 2010-02-05T19:27:53Z <p>There are many datastores written in Erlang, for example Riak, Dynomite, CouchDb, Scalaris, have I missed any?</p> <p>I know that Java and C/C++ have also been used to write datastores (Cassandra, Hypertable, etc), but have any Datastores been written in any other functional languages such as F#, Scala, Haskell, Clojure, etc? The reason I am asking this (and many other functional programming and Erlang type questions) is to assess the feasibility of functional programming languages for real world projects.</p> <p>As a side note it has been pointed out to me that I mean the actual implementation language of the datastore itself, and not the client language to access the datastore (ie: via ODBC).</p> http://stackoverflow.com/questions/249200/what-is-the-fastest-webserver-solution-with-the-lowest-memory-footprint 9 What is the fastest webserver solution with the lowest memory footprint? John Wright 2008-10-30T03:35:22Z 2010-02-05T16:34:42Z <p>I need a webserver to serve up very simple POST/GET requests as JSON. I don't need MVC, Rails, Django. I need something that takes up very little memory, preferrably around 5K per reqeust. The webserver will talk to backend services like Scribe using Facebook Thrift. Each http request will also access a SQLLite database, one for each user and user's data do not overlap. It will serve up static html files as well as the json webservice. I am considering the following: Njinx with PHP, Kepler from Lua, rolling my own with libevent or libev perhaps calling out to Lua, or MochiWeb. Which of these options are best and what other options are out there? I can use PHP, python, or Lua for basic scripting and even could do basic C. I am leaning towards some sort of Erlang solution.</p> http://stackoverflow.com/questions/2207360/erlang-otp-release-compiles-with-hipe 3 Erlang OTP release compiles with HiPE? jldupont 2010-02-05T13:08:52Z 2010-02-05T13:24:45Z <p>After reading this question <a href="http://stackoverflow.com/questions/2206313/is-erlang-the-c-of-the-clustered-computing-world">http://stackoverflow.com/questions/2206313/is-erlang-the-c-of-the-clustered-computing-world</a> , I am wondering the official Erlang OTP compiles with HiPE?</p> <p>In other words, when I compile my <code>.erl</code> source with the OTP release R13 (as example), does it produce "object code" BEAM?</p> <p>Looking at <a href="http://www.it.uu.se/research/group/hipe/" rel="nofollow">http://www.it.uu.se/research/group/hipe/</a> , it does not appear that a standalone HiPE compiler is maintained anymore.</p> http://stackoverflow.com/questions/2206313/is-erlang-the-c-of-the-clustered-computing-world 2 Is Erlang the C of the clustered computing world? Zubair 2010-02-05T09:50:00Z 2010-02-05T10:28:34Z <p>Erlang seems to be very low level and performant on networks, but does not have a very rich type system or many of the things that other functional languages offer, so it seems to me that it will become the lowest level development language for clustered programming, until something else comes along and offers a decent clustered VM AND high level constructs. Any thoughts on this?</p> http://stackoverflow.com/questions/2205339/whats-the-appropriate-reference-for-writing-a-mysql-driver 1 What's the appropriate reference for writing a MySql driver? mwt 2010-02-05T06:06:14Z 2010-02-05T06:06:14Z <p>I have to use erlang-mysql-driver in my application, but it has been distressingly unreliable. Since it isn't being maintained, I don't see any option but to fix it myself. The problem is, I've never written nor worked on a database driver, and I don't know where to start. Mainly, I can't find the relevant documentation that specifies how a mysql driver should operate. Can anyone provide a pointer?</p> http://stackoverflow.com/questions/2200017/does-writing-of-the-big-file-block-erlang-vm 1 Does writing of the big file block Erlang VM ? Konstantin 2010-02-04T13:40:09Z 2010-02-04T15:35:10Z <p>Does the entire Erlang VM get blocked (that is no other Erlang processes are executed) while I write a big file in a separate process ?</p> http://stackoverflow.com/questions/2194997/running-multiple-erlang-applications-one-or-many-vms 4 Running multiple Erlang applications. One or many VMs? Zubair 2010-02-03T19:58:40Z 2010-02-04T03:12:27Z <p>I want to run multiple Erlang applications, one being Riak and another being a web server. Should I run them in the same of separate Erlang VMs and why?</p> http://stackoverflow.com/questions/2193203/why-gen-tcpcontrolling-process-can-failed-with-badarg 0 why gen_tcp:controlling_process() can failed with badarg? vinnitu 2010-02-03T15:52:24Z 2010-02-03T16:55:29Z <p>Hi.</p> <p>I have a problem with one module of ejabberd. It is http_bind. But when I debug deeply I found that after accept socket and spawning hadling process and when reasign process for recieve data for new created process by calling gen_tcp:controlling_process() failed with badarg, WHY?</p> <p>...</p> <pre><code>{ok, Socket} = get_tcp:accept(ListenSocket), Opts = [{active, false}, ...], % here function return result of proc_lib:spawn_link(handler, ...) {ok, Pid} = ejabberd_http:start({gen_tcp, Socket}, Opts), gen_tcp:controlling_process(Socket, Pid), : {badarg, [ {erlang, port_connect, [#Port&lt;0.140743856&gt;, &lt;0.5939.4350&gt;]}, {inet, tcp_controlling_process, 2}, {ejabberd_socket,start,4}, {ejabberd_listener,accept,3}, {proc_lib,init_p,5} ]} </code></pre> <p>any help?</p> http://stackoverflow.com/questions/2185371/how-do-i-send-a-module-to-an-erlang-node 0 How do I send a module to an Erlang node? Zubair 2010-02-02T15:51:23Z 2010-02-03T08:47:12Z <p>I have several nodes running in an erlang cluster, each using the same magic cookie and trusted by each other. I want to have one master node send code and modules to the other nodes. How can I do this?</p> http://stackoverflow.com/questions/2186224/why-doesnt-erlang-come-with-a-decent-package-management-system-like-gem 1 Why doesn't Erlang come with a decent package management system like gem? Zubair 2010-02-02T17:33:24Z 2010-02-02T19:35:06Z <p>Ok, this sounds like a bit of a rant, but I was wondering if there was a technical reason that Erlang doesn't have a proper package management system by default.</p> http://stackoverflow.com/questions/2186065/is-there-something-like-gem-for-erlang 1 Is there something like gem for erlang? Zubair 2010-02-02T17:11:35Z 2010-02-02T19:34:20Z <p>Is there a simply plug in system like gem for erlang as I find it quite complicated to install third party software?</p>