-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPerformance.xml
More file actions
65 lines (58 loc) · 2.07 KB
/
Performance.xml
File metadata and controls
65 lines (58 loc) · 2.07 KB
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
<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xl="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
xml:id="VDG-Performance" version="5.1">
<title>Performance Considerations</title>
<para>
Managing disk images doesn't stop at file manipulation and storage
pool monitoring. After you create a disk image something else is
going to use it. That's where performance tuning considerations
come into play. This section straddles the line between system
administrator and application developer roles. What I mean to say
is that application of some techniques in this section may require
knowledge which is outside of your domain as a system
administrator. To help bridge the knowledge gap I'll include notes
on how to identify what you're looking for when tuning the system.
</para>
<para>
Many performance tuning decisions come down to one question:
<emphasis>In the event of catastrophic system failure, how
expensive is it to replace the data?</emphasis> If that value is
low you can reach higher levels of performance at the cost of
higher risk of data loss. If that value is high you can reach
greater levels of data integrity at the cost of performance.
</para>
<para>
In this section we'll cover the following topics:
</para>
<itemizedlist>
<listitem>
<para>
Selecting the right disk caching mode
</para>
</listitem>
<listitem>
<para>
Selecting the right virtual device
</para>
</listitem>
<listitem>
<para>
Selecting the right I/O scheduler
</para>
</listitem>
<listitem>
<para>
Balancing resources with cgroups
</para>
</listitem>
</itemizedlist>
<para>
You may also be interested in reading over <xref
linkend="VDG-Formats" />.
</para>
<xi:include href="performance/caching.xml"/>
<!-- <xi:include href="performance/device.xml"/> -->
<xi:include href="performance/scheduler.xml"/>
<!-- <xi:include href="performance/cgroups.xml"/> -->
</chapter>