Merge tag 'v4.0-rc3' into HEAD
[deliverable/linux.git] / Documentation / device-mapper / cache-policies.txt
CommitLineData
f2836352
JT
1Guidance for writing policies
2=============================
3
4Try to keep transactionality out of it. The core is careful to
5avoid asking about anything that is migrating. This is a pain, but
6makes it easier to write the policies.
7
8Mappings are loaded into the policy at construction time.
9
10Every bio that is mapped by the target is referred to the policy.
11The policy can return a simple HIT or MISS or issue a migration.
12
13Currently there's no way for the policy to issue background work,
14e.g. to start writing back dirty blocks that are going to be evicte
15soon.
16
17Because we map bios, rather than requests it's easy for the policy
18to get fooled by many small bios. For this reason the core target
19issues periodic ticks to the policy. It's suggested that the policy
20doesn't update states (eg, hit counts) for a block more than once
21for each tick. The core ticks by watching bios complete, and so
22trying to see when the io scheduler has let the ios run.
23
24
25Overview of supplied cache replacement policies
26===============================================
27
28multiqueue
29----------
30
31This policy is the default.
32
01911c19
JT
33The multiqueue policy has three sets of 16 queues: one set for entries
34waiting for the cache and another two for those in the cache (a set for
35clean entries and a set for dirty entries).
36
f2836352
JT
37Cache entries in the queues are aged based on logical time. Entry into
38the cache is based on variable thresholds and queue selection is based
39on hit count on entry. The policy aims to take different cache miss
40costs into account and to adjust to varying load patterns automatically.
41
42Message and constructor argument pairs are:
78e03d69
JT
43 'sequential_threshold <#nr_sequential_ios>'
44 'random_threshold <#nr_random_ios>'
45 'read_promote_adjustment <value>'
46 'write_promote_adjustment <value>'
47 'discard_promote_adjustment <value>'
f2836352
JT
48
49The sequential threshold indicates the number of contiguous I/Os
f1afb36a
MS
50required before a stream is treated as sequential. Once a stream is
51considered sequential it will bypass the cache. The random threshold
f2836352
JT
52is the number of intervening non-contiguous I/Os that must be seen
53before the stream is treated as random again.
54
55The sequential and random thresholds default to 512 and 4 respectively.
56
f1afb36a
MS
57Large, sequential I/Os are probably better left on the origin device
58since spindles tend to have good sequential I/O bandwidth. The
59io_tracker counts contiguous I/Os to try to spot when the I/O is in one
60of these sequential modes. But there are use-cases for wanting to
61promote sequential blocks to the cache (e.g. fast application startup).
62If sequential threshold is set to 0 the sequential I/O detection is
63disabled and sequential I/O will no longer implicitly bypass the cache.
64Setting the random threshold to 0 does _not_ disable the random I/O
65stream detection.
f2836352 66
b155aa0e
JT
67Internally the mq policy determines a promotion threshold. If the hit
68count of a block not in the cache goes above this threshold it gets
69promoted to the cache. The read, write and discard promote adjustment
78e03d69
JT
70tunables allow you to tweak the promotion threshold by adding a small
71value based on the io type. They default to 4, 8 and 1 respectively.
72If you're trying to quickly warm a new cache device you may wish to
73reduce these to encourage promotion. Remember to switch them back to
74their defaults after the cache fills though.
75
8735a813
HM
76cleaner
77-------
78
79The cleaner writes back all dirty blocks in a cache to decommission it.
80
f2836352
JT
81Examples
82========
83
84The syntax for a table is:
85 cache <metadata dev> <cache dev> <origin dev> <block size>
86 <#feature_args> [<feature arg>]*
87 <policy> <#policy_args> [<policy arg>]*
88
89The syntax to send a message using the dmsetup command is:
90 dmsetup message <mapped device> 0 sequential_threshold 1024
91 dmsetup message <mapped device> 0 random_threshold 8
92
93Using dmsetup:
94 dmsetup create blah --table "0 268435456 cache /dev/sdb /dev/sdc \
95 /dev/sdd 512 0 mq 4 sequential_threshold 1024 random_threshold 8"
96 creates a 128GB large mapped device named 'blah' with the
97 sequential threshold set to 1024 and the random_threshold set to 8.
This page took 0.104793 seconds and 5 git commands to generate.