]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/doc/applications.md
import 15.2.0 Octopus source
[ceph.git] / ceph / src / spdk / doc / applications.md
CommitLineData
9f95a23c 1
11fdf7f2
TL
2# An Overview of SPDK Applications {#app_overview}
3
4SPDK is primarily a development kit that delivers libraries and header files for
5use in other applications. However, SPDK also contains a number of applications.
6These applications are primarily used to test the libraries, but many are full
7featured and high quality. The major applications in SPDK are:
8
9- @ref iscsi
10- @ref nvmf
11- @ref vhost
12- SPDK Target (a unified application combining the above three)
13
14There are also a number of tools and examples in the `examples` directory.
15
16The SPDK targets are all based on a common framework so they have much in
17common. The framework defines a concept called a `subsystem` and all
18functionality is implemented in various subsystems. Subsystems have a unified
19initialization and teardown path.
20
21# Configuring SPDK Applications {#app_config}
22
23## Command Line Parameters {#app_cmd_line_args}
24
25The SPDK application framework defines a set of base command line flags for all
26applications that use it. Specific applications may implement additional flags.
27
28Param | Long Param | Type | Default | Description
29-------- | ---------------------- | -------- | ---------------------- | -----------
30-c | --config | string | | @ref cmd_arg_config_file
31-d | --limit-coredump | flag | false | @ref cmd_arg_limit_coredump
32-e | --tpoint-group-mask | integer | 0x0 | @ref cmd_arg_limit_tpoint_group_mask
33-g | --single-file-segments | flag | | @ref cmd_arg_single_file_segments
34-h | --help | flag | | show all available parameters and exit
35-i | --shm-id | integer | | @ref cmd_arg_multi_process
36-m | --cpumask | CPU mask | 0x1 | application @ref cpu_mask
37-n | --mem-channels | integer | all channels | number of memory channels used for DPDK
38-p | --master-core | integer | first core in CPU mask | master (primary) core for DPDK
39-r | --rpc-socket | string | /var/tmp/spdk.sock | RPC listen address
40-s | --mem-size | integer | all hugepage memory | @ref cmd_arg_memory_size
9f95a23c 41| | --silence-noticelog | flag | | disable notice level logging to `stderr`
11fdf7f2 42-u | --no-pci | flag | | @ref cmd_arg_disable_pci_access.
9f95a23c 43| | --wait-for-rpc | flag | | @ref cmd_arg_deferred_initialization
11fdf7f2
TL
44-B | --pci-blacklist | B:D:F | | @ref cmd_arg_pci_blacklist_whitelist.
45-W | --pci-whitelist | B:D:F | | @ref cmd_arg_pci_blacklist_whitelist.
46-R | --huge-unlink | flag | | @ref cmd_arg_huge_unlink
9f95a23c
TL
47| | --huge-dir | string | the first discovered | allocate hugepages from a specific mount
48-L | --logflag | string | | @ref cmd_arg_debug_log_flags
11fdf7f2
TL
49
50
51### Configuration file {#cmd_arg_config_file}
52
53Historically, the SPDK applications were configured using a configuration file.
54This is still supported, but is considered deprecated in favor of JSON RPC
55configuration. See @ref jsonrpc for details.
56
57Note that `--config` and `--wait-for-rpc` cannot be used at the same time.
58
59### Limit coredump {#cmd_arg_limit_coredump}
60
61By default, an SPDK application will set resource limits for core file sizes
62to RLIM_INFINITY. Specifying `--limit-coredump` will not set the resource limits.
63
64### Tracepoint group mask {#cmd_arg_limit_tpoint_group_mask}
65
66SPDK has an experimental low overhead tracing framework. Tracepoints in this
67framework are organized into tracepoint groups. By default, all tracepoint
68groups are disabled. `--tpoint-group-mask` can be used to enable a specific
69subset of tracepoint groups in the application.
70
71Note: Additional documentation on the tracepoint framework is in progress.
72
73### Deferred initialization {#cmd_arg_deferred_initialization}
74
75SPDK applications progress through a set of states beginning with `STARTUP` and
76ending with `RUNTIME`.
77
78If the `--wait-for-rpc` parameter is provided SPDK will pause just before starting
79subsystem initialization. This state is called `STARTUP`. The JSON RPC server is
80ready but only a small subsystem of commands are available to set up initialization
81parameters. Those parameters can't be changed after the SPDK application enters
82`RUNTIME` state. When the client finishes configuring the SPDK subsystems it
83needs to issue the @ref rpc_start_subsystem_init RPC command to begin the
84initialization process. After `rpc_start_subsystem_init` returns `true` SPDK
85will enter the `RUNTIME` state and the list of available commands becomes much
86larger.
87
88To see which RPC methods are available in the current state, issue the
9f95a23c 89`rpc_get_methods` with the parameter `current` set to `true`.
11fdf7f2
TL
90
91For more details see @ref jsonrpc documentation.
92
93### Create just one hugetlbfs file {#cmd_arg_single_file_segments}
94
95Instead of creating one hugetlbfs file per page, this option makes SPDK create
96one file per hugepages per socket. This is needed for @ref virtio to be used
97with more than 8 hugepages. See @ref virtio_2mb.
98
99### Multi process mode {#cmd_arg_multi_process}
100
101When `--shm-id` is specified, the application is started in multi-process mode.
102Applications using the same shm-id share their memory and
103[NVMe devices](@ref nvme_multi_process). The first app to start with a given id
104becomes a primary process, with the rest, called secondary processes, only
105attaching to it. When the primary process exits, the secondary ones continue to
106operate, but no new processes can be attached at this point. All processes within
107the same shm-id group must use the same
108[--single-file-segments setting](@ref cmd_arg_single_file_segments).
109
110### Memory size {#cmd_arg_memory_size}
111
112Total size of the hugepage memory to reserve. If DPDK env layer is used, it will
113reserve memory from all available hugetlbfs mounts, starting with the one with
114the highest page size. This option accepts a number of bytes with a possible
115binary prefix, e.g. 1024, 1024M, 1G. The default unit is megabyte.
116
9f95a23c
TL
117Starting with DPDK 18.05.1, it's possible to reserve hugepages at runtime, meaning
118that SPDK application can be started with 0 pre-reserved memory. Unlike hugepages
119pre-reserved at the application startup, the hugepages reserved at runtime will be
120released to the system as soon as they're no longer used.
121
11fdf7f2
TL
122### Disable PCI access {#cmd_arg_disable_pci_access}
123
124If SPDK is run with PCI access disabled it won't detect any PCI devices. This
125includes primarily NVMe and IOAT devices. Also, the VFIO and UIO kernel modules
126are not required in this mode.
127
128### PCI address blacklist and whitelist {#cmd_arg_pci_blacklist_whitelist}
129
130If blacklist is used, then all devices with the provided PCI address will be
131ignored. If a whitelist is used, only whitelisted devices will be probed.
132`-B` or `-W` can be used more than once, but cannot be mixed together. That is,
133`-B` and `-W` cannot be used at the same time.
134
135### Unlink hugepage files after initialization {#cmd_arg_huge_unlink}
136
137By default, each DPDK-based application tries to remove any orphaned hugetlbfs
138files during its initialization. This option removes hugetlbfs files of the current
139process as soon as they're created, but is not compatible with `--shm-id`.
140
141### Debug log {#cmd_arg_debug_log_flags}
142
143Enable a specific debug log type. This option can be used more than once. A list of
9f95a23c 144all available types is provided in the `--help` output, with `--logflag all`
11fdf7f2
TL
145enabling all of them. Debug logs are only available in debug builds of SPDK.
146
147## CPU mask {#cpu_mask}
148
149Whenever the `CPU mask` is mentioned it is a string in one of the following formats:
150
151- Case insensitive hexadecimal string with or without "0x" prefix.
152- Comma separated list of CPUs or list of CPU ranges. Use '-' to define range.
153
154### Example
155
156The following CPU masks are equal and correspond to CPUs 0, 1, 2, 8, 9, 10, 11 and 12:
157
158~~~
1590x1f07
1600x1F07
1611f07
162[0,1,2,8-12]
163[0, 1, 2, 8, 9, 10, 11, 12]
164~~~