File: tra.man

package info (click to toggle)
tra 20020816-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,696 kB
  • ctags: 2,623
  • sloc: ansic: 22,519; makefile: 406; asm: 269
file content (491 lines) | stat: -rw-r--r-- 9,798 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
.de EX
.ift .ft 5
.nf
..
.de EE
.ft1
.fi
..
.TH TRA 1
.SH NAME
minisync, tramkdb, trascan, trasrv, trafixdb \- unidirectional replica synchronization
.SH SYNOPSIS
.B minisync
[
.B -Anftv
]
[
.B -z
.I n
]
.I src
.I dst
[
.I paths
...
]
.PP
.B trascan
.I replica
[
.I paths
...
]
.PP
.B tramkdb
.I dbfile
.I replicaname
.PP
.B trasrv
[
.B -i
.I ifile
]
[
.B -o
.I option
]
.I dbfile
.I root
.PP
.B trafixdb
.B -l
.PP
.B trafixdb
[
.B -n
]
.I dbfile
[
.I outdbfile
]
.SH DESCRIPTION
Tra is a
file system synchronizer.
It helps to manage the replication of a shared
file system on many hosts, automatically
propagating updates when possible.
The file system is
.I optimistically
.IR replicated :
any replica is allowed to make any change at any time.
Changes are propagated via pairwise synchronization
between replicas.
Incomptible changes, called conflicts, are reported
to the user for manual resolution.
.SS Minisync
.PP
.I Minisync
tracks the modification history of each file as it is changed and copied
from replica to replica.
The replica names on the command line are executable files,
typically shell scripts,
that run
.I trasrv
with appropriate arguments.
Replica names are further described a few paragraphs later in this section.
.PP
The synchronization of a single file proceeds as follows
(this is a description of the behavior, not the implementation):
.RS
.IP 1.
If the history of the file on
.I src
is a prefix of or equal to the history on
.IR dst ,
then
.I dst
is up-to-date; do nothing.
.IP 2.
If the history of the file on
.I dst
is a prefix of the history of the file on 
.IR src ,
the file on
.I src
is propagated to
.IR dst .
.IP 3.
If neither history is a prefix of the other,
the two files have diverged.  Report a conflict.
.RE
Creation or deletion of a file is considered an event in the
history of a file.
Conflict names take the form
.IR action / action ,
indicating how the histories have diverged;
the first
.I action
corresponds to the file on
.I src
and the second
.I action
corresponds to the file on
.IR dst .
.I Action
is one of
.BR update ,
.BR create ,
or
.BR delete .
For example, an
.B update/delete
conflict indicates that since the files on
.I src
and
.I dst
diverged, the file on
.I src
has been updated but the file on
.I dst
has been deleted.
Of course, these changes might have occurred on other replicas
and propagated to
.I src
and
.IR dst .
.PP
.I Minisync
performs a undirectional synchronization,
propagating updates from the replica
.I src
to the replica
.I dst.
If
.I paths
are specified, the synchronization is limited
to files and directories in the trees rooted at those paths.
If no
.I path
is specified, the entire replica is synchronized.
.PP
The options are:
.TP
.B -A
By default, when two identical files are in conflict,
the conflict is automatically resolved.
The
.B -A
flag turns this auto-resolution off.
.TP
.B -n
Do nothing.  Print what would be done.
.TP
.B -f
Resolve all conflicts in favor of the
.I src
(from)
replica.
.TP
.B -t
Resolve all conflicts in favor of the
.I dst
(to)
replica.
.TP
.B -v
Verbose; print file system operations as they are carried out.
.TP
.B -z
Set deflate compression level, from 1 to 9.
.PD
.PP
The arguments
.I src
and
.I dst
are named by executables that establish
connections to
.IR trasrv (8).
If a replica name does not begin with
.BR ./ ,
.BR ../ ,
or
.BR / ,
it is prefixed with the path
.B $home/lib/tra
(on Plan 9) or
.B $HOME/.tra
(on Unix).
.PP
If the file
.B $home/lib/tra/minisync.log
(on Plan 9)
or
.B $HOME/.tra/minisync.log
(on Unix)
exists,
.I minisync
appends a log of its actions to the file.
.SS Tramkdb
File histories are kept in an on-disk database.
.I Tramkdb
initializes a new database.
The bulk of the data is kept in
.IR dbfile ,
which typically has a
.B .tradb
suffix.
Auxiliary files
.IB dbfile .redo
and
.IB dbfile .redo2
hold block-level and database operation-level redo logs.
Each replica has a name that is used in the internal metadata
and in the explanations of conflicts.
This is the second argument to
.I tramkdb
and stored in the database.
So that replicas can't accidentally be configured with
identical names, the given
.I replicaname
is suffixed with a random 32-bit number.
.SS Trascan
.PP
.I Trascan
performs a file system scan of the named paths on
.I replica
(an executable interpreted exactly as
.IR minisync 's
.I src
and
.I dst
arguments)
and updates the database, but does not
touch the file system.
.PP
In order to detect updates reliably, the database includes
SHA1 hashes of every file in the file system.
The first file system scan for a newly created replica can
take a long time, since all the data in the file system must be hashed.
.I Trascan
is a useful way to initialize the database without
performing any file system operations.
.SS Trasrv
.I Trasrv
is the per-replica server to which
.I minisync
connects.
It needs to be told the database to use
and the root of the replicated file system.
The
.B -i
option instructs
.I trasrv
to consult
.I ifile
for a list of paths to include or exclude
from replication.
In the
.IR ifile ,
blank lines and lines beginning with a sharp
.RB ( # )
are ignored.
The other lines must be of the form
.I verb
.IR pattern ,
where
.I verb
is
.B include
or
.B exclude
and
.I pattern
is a shell-style file name pattern.
To decide whether to include a given path,
each line in the file is consulted in order; the earliest pattern
that matches determines whether the path is included.
If no pattern matches, the path is included.
If no
.B -i
option is given, a default rule set is used:
.EX
	# default rule set for trasrv
	exclude *.tradb*
	exclude minisync.log
.EE
If the pattern is rooted, as in
.BR /a/b ,
then the pattern must match the entire path.
If the pattern is not rooted, as in
.B *.tradb*
or
.BR a/b ,
then the pattern need only match the end of the path.
.PP
The
.B -o
flag enables
.I option ,
which is an arbitrary string.
The collection of options includes:
.TP
.B setmode
Include file mode information in synchronizations.
This causes changes to file modes to be propagated to
other replicas that have enabled the
.B setmode
option.
.TP
.B setuid
Include file owner information in synchronizations.
.TP
.B setgid
Include file group information in synchronizations.
.TP
.B setmtime
Include file modification time information in synchronizations.
.TP
.B mkwriteable
Make read-only files temporarily writeable for the purposes
of update propagation.
This is useful primarily for propagating RCS files.
.TP
.B testdblog
Do not flush the database to disk when 
.I trasrv
has finished.  This is used to exercise the
.I redo2
database operation log.
.SS Trafixdb
.I Trafixdb
is the Tra database
equivalent of the Unix utility
.IR fsck :
it scans for inconsistencies and fixes them,
reporting the changes it makes.
Unlike in some Unix file systems, 
inconsistencies can not arise from surprise interruptions
(e.g., killing a running
.IR trasrv ).
Updates to the database are performed atomically,
so the only source of inconsistencies is
programmer error.
.I Trafixdb
is updated when such errors are found and fixed in the 
actual database code.
The command
.EX
	trafixdb -l
.EE
displays a list of errors that
.I trafixdb
can repair, along with the date the bug was fixed in the database code.
.PD
.SH EXAMPLES
This example demonstrates setting up replicas and running 
a simple synchronization.
.EX
	$ cd /tmp
	$ mkdir r1 r2
	$ cat >t1 <<!
	#!/bin/sh
	trasrv t1.tradb /tmp/r1
	!
	$ cat >t2 <<!
	#!/bin/sh
	trasrv -r t2.tradb /tmp/r2
	!
	$ chmod +x t1 t2
	$ tramkdb t1.tradb repl1
	$ tramkdb t2.tradb repl2
	$ echo hello world >r1/a
	$ minisync -v ./t1 ./t2
	copy /a
	$ cat r2/a
	hello world
	$ 
.EE
.PP
A more full featured replica might be
.EX
	g% cat lib/tra/emelie
	#!/bin/rc
	trasrv -o setmode -o setgid /usr/rsc/lib/tra/emelie.tradb /usr/rsc
	g%
.EE
Notice that files on remote machines may be replicated
by running
.I trasrv
on a remote machine in the shell script.
For example,
.EX
	g% cat .tra/wally
	#!/bin/sh
	ssh wally trasrv $HOME/.tra/xxx.tradb $HOME
	g% 
.EE
This is actually oversimplified:
when using remote connections, in order to convince
.I ssh
to turn off Nagle's algorithm (which slows down our RPCs
considerably), use
.EX
	ssh -2 -q -e none -t -t 
.EE
on Unix
or
.EX
	ssh -Rmp
.EE
on Plan 9.
This has the side effect of causing
.I ssh
to allocate a pty for the connection,
which merges standard output and standard error.
Since
.B trasrv
occasionally writes important information on standard
error, it is a good idea to use the programs
.I stdmerge
and
.I stdsplit
(see
.IR tra-aux (1))
to keep them separate.
A full example would then be:
.EX
	g% cat .tra/wally
	#!/bin/sh
	ssh -2 -q -e none -t -t wally stdmerge trasrv \e
		$HOME $HOME/.tra/xxx.tradb | stdsplit
	g% 
.EE
.SH SOURCE
.B
cvs -d :pserver:anoncvs@cvs.pdos.lcs.mit.edu:/cvs co tra
.SH TRACES
We are interested in collecting traces of synchronization
activity for research purposes.
We would greatly appreciate it if you turn on logging
(by creating
or
.B $home/lib/tra/minisync.log
on Plan 9
or
.B $HOME/.tra/minisync.log
on Unix)
and mail us your log file occasionally (for example, when
the size starts to bother you, you might mail it and then
zero it.  Please compress the logs before sending.
For example:
.EX
	# plan 9
	g% gzip < lib/tra/minisync.log >/tmp/a
	g% echo minisync logs | mail -a /tmp/a tralog@pdos.lcs.mit.edu
	g% 
	# unix
	$ gzip < .tra/minisync.log |
	  uuencode minisync.log.gz |
	  mail tralog@pdos.lcs.mit.edu
	$
.EE
.PP
The log contains the dates and times of your synchronizations,
the names of the files being synchronized, the names of the
machines involved, and the
.I minisync
command lines.
We promise not to make the logs available to others without
first appropriately anonymizing them.