Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I start up my Erlang emulator, there the first bit has a bunch of informational things. (Slightly reformatted for effect.)

manoa:~ stu$ erl
Erlang (BEAM) emulator version 5.6.5 
[source] [smp:2] [async-threads:0] [hipe] [kernel-poll:false]

Eshell V5.6.5 (abort with ^G)
1>

Some of it I can guess at, probably accurate, but some of it means 'here be magic'.

  • Erlang (BEAM) emulator version 5.6.5: the version, of course
  • [source]: the emulator was compiled from source?
  • [smp:2]: two CPU cores detected and available
  • [async-threads:0]: currently running jobs?
  • [hipe]: ?
  • [kernel-poll:false]: ?

I also wonder if there are other [foo] items that may pop up with different configurations, builds or start up parameters.

So, what do the Erlang emulator info statements mean?

share|improve this question

2 Answers

up vote 16 down vote accepted

[async-threads:0]

Size of async thread pool available for loaded drivers to use. This allows blocking syscalls to be performed in a separate kernel thread from the beam vm. Use command switch +A N to adjust the size of the pool.

[hipe]

Support for native compilation of erlang source and bytecode. Tends to mostly be useful for number crunching code. IO-bound code do fine on the bytecode interpreter.

[kernel-poll:false]

There is the old select(2) and poll(2) system calls for receiving notification that some file descriptor is ready for unblocking writing or reading. They do not scale well to high number of open file descriptors. Modern operatingsystems have alternative interfaces, linux has epoll, freebsd has kqueue. Enable with command switch +K true

share|improve this answer

As of Erlang R15B02, the full set of version string tags is:

[64-bit]

The BEAM emulator is built to make full use of a 64-bit CPU.

[64-bit halfword]

Added as an experimental feature in R14 and considered stable as of R14B02, it means the emulator is built to support a 64-bit CPU, but that it uses "halfwords" (32-bit values) to address almost every class of memory managed by the emulator. The main exceptions are the biggest bulk users of RAM, ETS tables and off-heap binaries. This makes the emulator faster while still being able to address more than 4 GB of RAM at a time.

The halfword emulator is currently incompatible with the HiPE feature. This limitation may be removed in the future.

Enable this with the --enable-halfword-emulator option to the configure script.

[async-threads:0]

This refers to the number of blocking system calls that can be running at once in the background. The default is 0, which means that any system call can block an Erlang emulator thread. You can enable the thread pool by passing the emulator an argument greater than 0 with the +A option. Beware that at least one test showed that it has a negligible performance advantage. That is probably why it defaults to 0. You should only enable this feature if testing shows that it helps your particular workload.

[debug-compiled]

The emulator was built such that it can be run under a native debugger.

[dtrace]

Appears if you passed --with-dynamic-trace=dtrace to the configure script to enable the experimental DTrace instrumentation feature added in R15B01. This feature is only expected to work on OS X, Solaris and FreeBSD. It may work on other platforms in the future. See [systemtap] below for an alternative added at the same time for Linux systems.

[hipe]

The emulator was compiled with the HiPE feature enabled, which is an on-the-fly native code compiler for Erlang. It only works on the most popular CPU types that Erlang supports, and it doesn't work with all configurations even on those CPUs, which is why it's optional.

[kernel-poll:false]

The Erlang emulator code knows several different ways to ask the OS's network stack which of a set of file descriptors and sockets are available for I/O. The only one that works pretty much everywhere is the old BSD select() call which is relatively slow due to its design, and has other scalability issues besides. So, most systems have one or more faster and more scalable replacements — e.g., kqueue, epoll(), etc. — but none of them is supported everywhere. When the emulator startup message says false here, it can mean either that kernel polling isn't available or that it is but you did not pass +K true to erl.

[lock-checking]

Appears if you passed --enable-lock-check to the configure script.

[lock-counting]

Appears if you passed --enable-lock-counter to the configure script.

[no-c-stack-objects]

This can only appear if you have built the BEAM emulator in a nonstandard way, defining two constants in a way that can only happen if you have hacked the Erlang source code. It says the new 64-bit halfword heap code isn't being used, but heap allocations are being done at least partly the way the halfword heap code works. My guess is that this configuration is only intended for use in development to isolate two bits of behavior from each other to make them easier to test and debug.

[purify-compiled]

The emulator was compiled with Purify support.

[rq:2]

Means 2 run queues, a new feature as of R13, allowing Erlang to make better use of multi-core machines. The first SMP-capable versions of Erlang had multiple schedulers (e.g. [smp:2]) but a single shared run queue, which limited scalability.

[smp:2:2]

The [smp:2] tag changed to this format in Erlang R13, meaning 2 schedulers, both of which are online. If you say "erl +S1", it says [smp:1:1] instead. You can take schedulers offline at runtime with erlang:system_flag(schedulers_online, N), where N can be anything between 1 and the number of cores detected, inclusive.

[source]

It means some third party (maybe you, maybe your OS distro's package mantainer, maybe your sysadmin) built Erlang from source. The alternative is downloading an official binary version from Erlang.org.

[systemtap]

Appears if you passed --with-dynamic-trace=systemtap to the configure script. This is an alternative to the =dtrace value for this configuration option, providing essentially the same functionality on Linux using SystemTap, since DTrace is not normally available on Linux. See [dtrace] above.

[type-assertions]

Appears when you uncomment the ET_DEBUG line in erts/emulator/beam/erl_term.h, enabling runtime checking of all type-specific data accesses. Not enabled by default because it slows down the emulator.

[valgrind-compiled]

Appears when you build on a platform with Valgrind installed, and the configure script finds valgrind.h.

(This list comes from erts/emulator/beam/erl_bif_info.c in the Erlang OTP source tree.)


Obsolete tags: The [hybrid-heap] and [incremental GC] tags and associated features were removed in R15B02 essentially because they were failed experiements.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.