blob: 0d124a9718013be38c6ddbe404f15b9a251fa204 [file] [log] [blame]
Joe Thornberf2836352013-03-01 22:45:51 +00001Guidance 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
Joe Thornber01911c12013-10-24 14:10:28 -040033The 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
Joe Thornberf2836352013-03-01 22:45:51 +000037Cache 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:
Joe Thornber78e03d62013-12-09 12:53:05 +000043 '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>'
Joe Thornberf2836352013-03-01 22:45:51 +000048
49The sequential threshold indicates the number of contiguous I/Os
Mike Snitzerf1afb362014-10-30 10:02:01 -040050required before a stream is treated as sequential. Once a stream is
51considered sequential it will bypass the cache. The random threshold
Joe Thornberf2836352013-03-01 22:45:51 +000052is 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
Mike Snitzerf1afb362014-10-30 10:02:01 -040057Large, 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.
Joe Thornberf2836352013-03-01 22:45:51 +000066
Joe Thornberb155aa02014-10-22 14:30:58 +010067Internally 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
Joe Thornber78e03d62013-12-09 12:53:05 +000070tunables 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
Heinz Mauelshagen8735a812013-03-01 22:45:52 +000076cleaner
77-------
78
79The cleaner writes back all dirty blocks in a cache to decommission it.
80
Joe Thornberf2836352013-03-01 22:45:51 +000081Examples
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.