]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/geom/class/journal/gjournal.8
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sbin / geom / class / journal / gjournal.8
1 .\" Copyright (c) 2006-2009 Pawel Jakub Dawidek <pjd@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd February 17, 2009
28 .Dt GJOURNAL 8
29 .Os
30 .Sh NAME
31 .Nm gjournal
32 .Nd "control utility for journaled devices"
33 .Sh SYNOPSIS
34 .Nm
35 .Cm label
36 .Op Fl cfhv
37 .Op Fl s Ar jsize
38 .Ar dataprov
39 .Op Ar jprov
40 .Nm
41 .Cm stop
42 .Op Fl fv
43 .Ar name ...
44 .Nm
45 .Cm sync
46 .Op Fl v
47 .Nm
48 .Cm clear
49 .Op Fl v
50 .Ar prov ...
51 .Nm
52 .Cm dump
53 .Ar prov ...
54 .Nm
55 .Cm list
56 .Nm
57 .Cm status
58 .Nm
59 .Cm load
60 .Nm
61 .Cm unload
62 .Sh DESCRIPTION
63 The
64 .Nm
65 utility is used for journal configuration on the given GEOM provider.
66 The Journal and data may be stored on the same provider or on two separate
67 providers.
68 This is block level journaling, not file system level journaling, which means
69 everything gets logged, e.g.\& for file systems, it journals both data and
70 metadata.
71 The
72 .Nm
73 GEOM class can talk to file systems, which allows the use of
74 .Nm
75 for file system journaling and to keep file systems in a consistent state.
76 At this time, only UFS file system is supported.
77 .Pp
78 To configure journaling on the UFS file system using
79 .Nm ,
80 one should first create a
81 .Nm
82 provider using the
83 .Nm
84 utility, then run
85 .Xr newfs 8
86 or
87 .Xr tunefs 8
88 on it with the
89 .Fl J
90 flag which instructs UFS to cooperate with the
91 .Nm
92 provider below.
93 There are important differences in how journaled UFS works.
94 The most important one is that
95 .Xr sync 2
96 and
97 .Xr fsync 2
98 system calls do not work as expected anymore.
99 To ensure that data is stored on the data provider, the
100 .Nm Cm sync
101 command should be used after calling
102 .Xr sync 2 .
103 For the best performance possible, soft-updates should be disabled when
104 .Nm
105 is used.
106 It is also safe and recommended to use the
107 .Cm async
108 .Xr mount 8
109 option.
110 .Pp
111 When
112 .Nm
113 is configured on top of
114 .Xr gmirror 8
115 or
116 .Xr graid3 8
117 providers, it also keeps them in a consistent state, thus
118 automatic synchronization on power failure or system crash may be disabled
119 on those providers.
120 .Pp
121 The
122 .Nm
123 utility uses on-disk metadata, stored in the provider's last sector,
124 to store all needed information.
125 This could be a problem when an existing file system is converted to use
126 .Nm .
127 .Pp
128 The first argument to
129 .Nm
130 indicates an action to be performed:
131 .Bl -tag -width ".Cm status"
132 .It Cm label
133 Configures
134 .Nm
135 on the given provider(s).
136 If only one provider is given, both data and journal are stored on the same
137 provider.
138 If two providers are given, the first one will be used as data provider and the
139 second will be used as the journal provider.
140 .Pp
141 Additional options include:
142 .Bl -tag -width ".Fl s Ar jsize"
143 .It Fl c
144 Checksum journal records.
145 .It Fl f
146 May be used to convert an existing file system to use
147 .Nm ,
148 but only if the journal will be configured on a separate provider and if the
149 last sector in the data provider is not used by the existing file system.
150 If
151 .Nm
152 detects that the last sector is used, it will refuse to overwrite it
153 and return an error.
154 This behavior may be forced by using the
155 .Fl f
156 flag, which will force
157 .Nm
158 to overwrite the last sector.
159 .It Fl h
160 Hardcode provider names in metadata.
161 .It Fl s Ar jsize
162 Specifies size of the journal if only one provider is used for both data and
163 journal.
164 The default is one gigabyte.
165 Size should be chosen based on provider's load, and not on its size;
166 recommended minimum is twice the size of the physical memory installed.
167 It is not recommended to use
168 .Nm
169 for small file systems (e.g.: only few gigabytes big).
170 .El
171 .It Cm clear
172 Clear metadata on the given providers.
173 .It Cm stop
174 Stop the given provider.
175 .Pp
176 Additional options include:
177 .Bl -tag -width ".Fl f"
178 .It Fl f
179 Stop the given provider even if it is opened.
180 .El
181 .It Cm sync
182 Trigger journal switch and enforce sending data to the data provider.
183 .It Cm dump
184 Dump metadata stored on the given providers.
185 .It Cm list
186 See
187 .Xr geom 8 .
188 .It Cm status
189 See
190 .Xr geom 8 .
191 .It Cm load
192 See
193 .Xr geom 8 .
194 .It Cm unload
195 See
196 .Xr geom 8 .
197 .El
198 .Pp
199 Additional options include:
200 .Bl -tag -width ".Fl v"
201 .It Fl v
202 Be more verbose.
203 .El
204 .Sh EXIT STATUS
205 Exit status is 0 on success, and 1 if the command fails.
206 .Sh EXAMPLES
207 Create a
208 .Nm
209 based UFS file system and mount it:
210 .Bd -literal -offset indent
211 gjournal load
212 gjournal label da0
213 newfs -J /dev/da0.journal
214 mount -o async /dev/da0.journal /mnt
215 .Ed
216 .Pp
217 Configure journaling on an existing file system, but only if
218 .Nm
219 allows this (i.e., if the last sector is not already used by the file system):
220 .Bd -literal -offset indent
221 umount /dev/da0s1d
222 gjournal label da0s1d da0s1e && \e
223     tunefs -J enable -n disable da0s1d.journal && \e
224     mount -o async /dev/da0s1d.journal /mnt || \e
225     mount /dev/da0s1d /mnt
226 .Ed
227 .Sh SYSCTLS
228 Gjournal adds the sysctl level kern.geom.journal.
229 The string and integer information available is detailed below.
230 The changeable column shows whether a process with appropriate privilege may
231 change the value.
232 .Bl -column "accept_immediatelyXXXXXX" integerXXX -offset indent
233 .It Sy "sysctl name     Type    Changeable"
234 .It "debug      integer yes"
235 .It "switch_time        integer yes"
236 .It "force_switch       integer yes"
237 .It "parallel_flushes   integer yes"
238 .It "accept_immediately integer yes"
239 .It "parallel_copies    integer yes"
240 .It "record_entries     integer yes"
241 .It "optimize   integer yes"
242 .El
243 .Pp
244 .Bl -tag -width 6n
245 .It Li debug
246 Setting a non-zero value enables debugging at various levels.
247 Debug level 1 will record actions at a journal level, relating to journal
248 switches, metadata updates, etc.
249 Debug level 2 will record actions at a higher level, relating to the numbers of
250 entries in journals, access requests, etc.
251 Debug level 3 will record verbose detail, including insertion of I/Os to the
252 journal.
253 .It Li switch_time
254 The maximum number of seconds a journal is allowed to remain open before
255 switching to a new journal.
256 .It Li force_switch
257 Force a journal switch when the journal uses more than N% of the free journal
258 space.
259 .It Li parallel_flushes
260 The number of flush I/O requests to be sent in parallel when flushing the
261 journal to the data provider.
262 .It Li accept_immediately
263 The maximum number of I/O requests accepted at the same time.
264 .It Li parallel_copies
265 The number of copy I/O requests to send in parallel.
266 .It Li record_entries
267 The maximum number of record entries to allow in a single journal.
268 .It Li optimize
269 Controls whether entries in a journal will be optimized by combining overlapping
270 I/Os into a single I/O and reordering the entries in a journal.
271 This can be disabled by setting the sysctl to 0.
272 .El
273 .Ss cache
274 The string and integer information available for the cache level
275 is detailed below.
276 The changeable column shows whether a process with appropriate
277 privilege may change the value.
278 .Bl -column "alloc_failuresXXXXXX" integerXXX -offset indent
279 .It Sy "sysctl name     Type    Changeable"
280 .It "used       integer no"
281 .It "limit      integer yes"
282 .It "divisor    integer no"
283 .It "switch     integer yes"
284 .It "misses     integer yes"
285 .It "alloc_failures     integer yes"
286 .El
287 .Pp
288 .Bl -tag -width 6n
289 .It Li used
290 The number of bytes currently allocated to the cache.
291 .It Li limit
292 The maximum number of bytes to be allocated to the cache.
293 .It Li divisor
294 Sets the cache size to be used as a proportion of kmem_size.
295 A value of 2 (the default) will cause the cache size to be set to 1/2 of the
296 kmem_size.
297 .It Li switch
298 Force a journal switch when this percentage of cache has been used.
299 .It Li misses
300 The number of cache misses, when data has been read, but was not found in the
301 cache.
302 .It Li alloc_failures
303 The number of times memory failed to be allocated to the cache because the cache
304 limit was hit.
305 .El
306 .Ss stats
307 The string and integer information available for the statistics level
308 is detailed below.
309 The changeable column shows whether a process with appropriate
310 privilege may change the value.
311 .Bl -column "skipped_bytesXXXXXX" integerXXX -offset indent
312 .It Sy "sysctl name     Type    Changeable"
313 .It "skipped_bytes      integer yes"
314 .It "combined_ios       integer yes"
315 .It "switches   integer yes"
316 .It "wait_for_copy      integer yes"
317 .It "journal_full       integer yes"
318 .It "low_mem    integer yes"
319 .El
320 .Pp
321 .Bl -tag -width 6n
322 .It Li skipped_bytes
323 The number of bytes skipped.
324 .It Li combined_ios
325 The number of I/Os which were combined by journal optimization.
326 .It Li switches
327 The number of journal switches.
328 .It Li wait_for_copy
329 The number of times the journal switch process had to wait for the previous
330 journal copy to complete.
331 .It Li journal_full
332 The number of times the journal was almost full, forcing a journal switch.
333 .It Li low_mem
334 The number of times the low_mem hook was called.
335 .El
336 .Sh SEE ALSO
337 .Xr geom 4 ,
338 .Xr geom 8 ,
339 .Xr mount 8 ,
340 .Xr newfs 8 ,
341 .Xr tunefs 8 ,
342 .Xr umount 8
343 .Sh HISTORY
344 The
345 .Nm
346 utility appeared in
347 .Fx 7.0 .
348 .Sh AUTHORS
349 .An Pawel Jakub Dawidek Aq pjd@FreeBSD.org