1MOGILEFSD(1) User Contributed Perl Documentation MOGILEFSD(1)
2
3
4
6 mogilefsd -- MogileFS tracker daemon
7
9 This is the main MogileFS daemon, mogilefsd, also called the "tracker".
10 All interaction with a MogileFS installation begins by a client talking
11 to a tracker (you should run several in parallel for redundancy).
12
13 See MogileFS::Client for a client library.
14
16 Processes
17 The mogilefsd daemon is an event-loop in the parent process, handling
18 with epoll/kqueue/etc (see Danga::Socket) tons of client connections,
19 while managing a bunch of worker processes underneath.
20
21 The worker processes under mogilefsd include:
22
23 Client query processing -- implements the MogileFS client/server
24 protocol
25 See MogileFS::Worker::Query.
26
27 Monitoring -- monitors hosts and devices
28 See MogileFS::Worker::Monitor.
29
30 Replicate -- replicates files
31 See MogileFS::Worker::Replicate.
32
33 Deleter -- deletes files from storage nodes (protocol deletes from
34 namespace are immediate)
35 See MogileFS::Worker::Delete.
36
37 Reaper -- re-enqueues files for replication when disks are marked dead
38 See MogileFS::Worker::Reaper.
39
40 Fsck -- background filesystem consistency checker
41 See MogileFS::Worker::Fsck.
42
43 Data Storage
44 See MogileFS::Store.
45
47 Brad Fitzpatrick <brad@danga.com>
48
49 Mark Smith <junior@danga.com>
50
51 Brad Whitaker <whitaker@danga.com>
52
54 Copyright 2004, Danga Interactive
55 Copyright 2005-2006, Six Apart Ltd.
56
58 Same terms as Perl itself. Artistic/GPLv2, at your choosing.
59
61 mogstored -- MogileFS storage daemon
62
63 <http://danga.com/mogilefs/>
64
65
66
67perl v5.28.0 2012-08-17 MOGILEFSD(1)