Tagged Questions
The supervisor tag has no wiki summary.
6
votes
3answers
333 views
Erlang: Who supervises the supervisor?
In all Erlang supervisor examples I have seen yet, there usually is a "master" supervisor who supervises the whole tree (or at least is the root node in the supervisor tree). What if the ...
6
votes
1answer
221 views
Erlang OTP supervising Java application
I have recently become familiar with Erlang/OTP technology and I would like to apply it to monitor and supervise Java applications in terms of:
detecting their availability
starting and stopping ...
6
votes
1answer
277 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
2answers
448 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
266 views
Why would one build supervisord inside of a buildout?
I've seen buildout recipes that build supervisor into the buildout, I suppose to control the daemons inside. However, it seems to me that one would still need something in /etc/init.d ( for example ) ...
5
votes
5answers
2k views
What version of Python (2.4, 2.5, 2.6, 3.0) do you standardize on for production development efforts (and why)?
In our group we primarily do search engine architecture and content integration work and most of that code base is in Python. All our build tools and Python module dependencies are in source control ...
4
votes
2answers
108 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
2answers
996 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
306 views
How can I restore process state after a crash?
What's a good way to persist state when restarting a crashed process?
I have a supervisor in an OTP application what watches several "subsystem" gen_servers.
For example, one is a "weather" ...
3
votes
1answer
97 views
Compensating for a one_for_one supervisor's inability to restart a child: tcp/ip port listeners
I have created a generic behavior that encapsulates tcp/ip functionality. All the user of the behaviour has to do is implement the callbacks that handle parsed "commands" that come from whatever is on ...
3
votes
2answers
472 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
211 views
can supervisord be used for memory and CPU usage profiling of a program
I have to find if running a particular api repeatedly over a period of time cause memory leak.
I have a simple C program which is used to test the API once. I am planning to compile it and run the ...
3
votes
6answers
184 views
Do teams need a code supervisor?
I think we quite agree programming must be more boring than programmers are able to manage (specially when you leave them alone).
Even more if there are coding guidelines.
What do you think about ...
3
votes
2answers
420 views
Should a client handling process be added to the supervisor tree?
in Erlang I have a supervisor-tree of processes, containing one that accepts tcp/ip connections. For each incoming connection I spawn a new process. Should this process be added to the supervisor tree ...
2
votes
0answers
26 views
Incorrect user for supervisor'd celeryd
I have some periodic tasks that I run with celery (daemonized by supervisord), but after trying to create a directory in the home dir for the user i setup for the supervisor'd process I got a ...
2
votes
3answers
71 views
How do I detect that a PHP CLI script is in a Hung state
I am using supervisor (http://supervisord.org/) to daemonize a fairly standard PHP script. The script is structured something like:
while (1) {
// Do a SQL select
// for any matching rows, do ...
2
votes
2answers
98 views
Erlang Supervisors - Shared Process Mailboxes
I have a supervisor process that monitors two child processes; a primary process and a backup process (in case the primary process exits).
If the primary process goes down whilst there are still ...
2
votes
1answer
111 views
simple_one_for_one start_child() returns already_started
I have a supervisor which should start simple_one_for_one workers. When I call start_child() for the first time, everything goes excellent. But, when I do it the second time, I get ...
2
votes
3answers
143 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
3answers
469 views
Run node.js application in debug with supervisor
I am using supervisor to auto-reload my node.js, e.g.
supervisor -w . app.js
However I can't work out how to get supervisor to run the node.js process in debug, e.g. the equivalent to
node ...
2
votes
2answers
161 views
How to atomatically delete specs of terminated children in a dynamic supervisor
No knowledge of USB needed for this question, just described it as it is to make the example more conrete.
I'm trying to implement a dynamic supervisor for specific devices on a USB bus.
These ...
2
votes
1answer
786 views
Erlang Dynamic supervisor start gen_server
I have root supervisor that create other supervisor:
start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
init([]) ->
RestartStrategy = {one_for_one, 5, 600},
...
2
votes
1answer
542 views
Erlang supervisor and supervisor child
I have a question about supervisor. For example i havee 1 supervisor and i need execute some start_child for this supervisor. Must i start first of all start my supervisor? or i can only ...
2
votes
2answers
207 views
How to find the supervisor of an OTP process?
Are there functions which would allow an OTP process to find the pid of its supervisor?
2
votes
3answers
435 views
Automatically restarting Erlang applications
I recently ran into a bug where an entire Erlang application died, yielding a log message that looked like this:
=INFO REPORT==== 11-Jun-2010::11:07:25 ===
application: myapp
exited: ...
2
votes
2answers
249 views
Cannot spawn an erlang supervisor from the shell
I've implemented a gen_server and supervisor: test_server and test_sup. I want to test them from the shell/CLI. I've written their start_link functions such that their names are registered locally.
...
1
vote
3answers
51 views
How can I pass arguments to the executable in node-supervisor?
node can be run with a debug parameter like this
$ node --debug src/file.js
I can also pass that parameter through the coffee-script binary like this
$ coffee --nodejs --debug src/file.coffee
...
1
vote
2answers
79 views
Simple_one_for_one application
I have a supervisor which starts simple_one_for_one children. Each child is in fact a supervisor which has its own tree. Each child is started with an unique ID, so I can distinguish them. Each ...
1
vote
1answer
138 views
Supervisord does not start killed processes
I have supervisord installed on my Ubuntu 10.04 and it runs a Java process continuously and supposed to heal (reload) process when it somehow dies or crashes.
On my htop I send SIGKILL, SIGTERM, ...
1
vote
1answer
440 views
Supervising virutalenv django app via supervisor
I'm trying to use supervisor in order to manage my django project running gunicorn inside a virtualenv.
My conf file looks like this:
[program:diasporamas]
...
1
vote
1answer
103 views
Collecting info about simple_one_for_one workers
I have a supervisor (called alice) which starts a bunch of_one_for_one workers. Now I'd like to get some info about all of the workes together. For instance, let's say workers are TCP servers and I'd ...
1
vote
4answers
113 views
how to handle termination of gen_fsm
I have a MAIN process that spawn an implementation of a gen_fsm behavior, but this MAIN process is not an implementation of supervisor behavior, its just another module.
Let say the implementation of ...
1
vote
1answer
155 views
How can a supervisor that reached_max_restart_intensity only delete the offending child?
I have a one_for_one supervisor that handles similar and totally independent children.
When there is a problem with one child, repeatedly crashing and triggering:
=SUPERVISOR REPORT==== ...
1
vote
1answer
106 views
Does supervisor block calls while restarting children?
I'm trying to understand what's happening here:
I have a supervisor that is cyclically restarting one client without triggering the MaxR, MaxT mechanism. The client just crashes slowly enough never ...
1
vote
2answers
549 views
Django, uWSGI & nginx: Process dies for “no reason”
I am using uWSGI and nginx to run two parallell Django apps. One of them, the one with somewhat more load (both are very small) keeps dying about once every 24 hours with the following message:
[pid: ...
1
vote
1answer
231 views
Erlang: what supervision tree should I end with writing a task scheduler?
Mostly in educational purposes I'm trying to write a task (task is an open_port({spawn_executable, Command})) scheduler.
I end up with the tree like
supervisor
| |
scheduler ...
1
vote
1answer
194 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
356 views
Multiple commands within Supervisor - Python/Linux
I'm using the amazing utility supervisord
I'm happily running a few apps editing the config file as follows:
[program: Django Dev Server]
command=python /path/to/project/manage.py runserver ...
1
vote
2answers
277 views
Signal passing to managed processes using supervisord
I am using supervisord to spawn and manage a FastCGI application that I am writing in C for a linux target. I have a signal handler that gracefully exits my application when SIGINT is received. I ...
1
vote
3answers
248 views
Erlang: cascaded supervisors?
Is it possible to cascade supervisors inside an application?
E.g. supervisor sup1 spawning a child process which creates a supervisor sup2 ?
1
vote
1answer
253 views
Supervisord RPC - UNKNOWN_METHOD on any request
I've configured (almost default) supervisord.conf and started supervisord. Tasks launched and xmlrpc interfaces are up, but gives
xmlrpclib.Fault: <Fault 1: 'UNKNOWN_METHOD'> on evey xmlrpc ...
0
votes
2answers
67 views
How do I start node.js+supervisor on boot?
After installing and setting up node.js on my development VM running Ubuntu 11.10, I would like supervisor to start automatically on boot, calling and reloading node.js when needed.
Below snippet ...
0
votes
1answer
59 views
supervisorctl will not tail a running process
Problem
I can't get supervisor to tail running processes properly. I'm running version 3.0a8.
Here's my supervisord.conf file
[inet_http_server]
port=9011
[supervisord]
...
0
votes
1answer
19 views
How can I stop Supervisor processes ( a process control system ) from within a PHP script Supervisor is managing?
I'm parallelizing a PHP script using Supervisor. When my script gets a certain response from the database, it executes a command to stop all the processes under control by the Supervisord daemon ...
0
votes
2answers
85 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
86 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
0answers
58 views
Supervisor - Running a python script PYTHONPATH issue
I am using supervisor to run a python script:
[program:twitter_track]
autorestart = true
numprocs = 1
autostart = false
redirect_stderr = True
stopwaitsecs = 1
startsecs = 1
priority = 99
command = ...
0
votes
2answers
59 views
supervising child process of restarted process
I have a structure like this
-------------
|Supervisor |
-------------
|
-------------
| Child1 |
-------------
|
-------------
| Child2 |
-------------
In this structure, child1 ...
0
votes
1answer
73 views
How to shutdown supervisor process correctly/completely?
I am using supervisor to launch and manage a nginx process. So far this works perfectly. The problem I am having is shutting down the instance.
I have tried using "supervisorctl -c shutdown [all]" ...
0
votes
0answers
68 views
TextMate Python bundle non-blocking
I created a bundle in TextMate for restarting the current Django project's associated Supervisor process. Running the code in the Python interpreter successfully restarts the process without blocking, ...