New upstream version 18.02
[deb_dpdk.git] / doc / guides / prog_guide / multi_proc_support.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2010-2014 Intel Corporation.
3
4 .. _Multi-process_Support:
5
6 Multi-process Support
7 =====================
8
9 In the DPDK, multi-process support is designed to allow a group of DPDK processes
10 to work together in a simple transparent manner to perform packet processing,
11 or other workloads.
12 To support this functionality,
13 a number of additions have been made to the core DPDK Environment Abstraction Layer (EAL).
14
15 The EAL has been modified to allow different types of DPDK processes to be spawned,
16 each with different permissions on the hugepage memory used by the applications.
17 For now, there are two types of process specified:
18
19 *   primary processes, which can initialize and which have full permissions on shared memory
20
21 *   secondary processes, which cannot initialize shared memory,
22     but can attach to pre- initialized shared memory and create objects in it.
23
24 Standalone DPDK processes are primary processes,
25 while secondary processes can only run alongside a primary process or
26 after a primary process has already configured the hugepage shared memory for them.
27
28 .. note::
29
30     Secondary processes should run alongside primary process with same DPDK version.
31
32 To support these two process types, and other multi-process setups described later,
33 two additional command-line parameters are available to the EAL:
34
35 *   ``--proc-type:`` for specifying a given process instance as the primary or secondary DPDK instance
36
37 *   ``--file-prefix:`` to allow processes that do not want to co-operate to have different memory regions
38
39 A number of example applications are provided that demonstrate how multiple DPDK processes can be used together.
40 These are more fully documented in the "Multi- process Sample Application" chapter
41 in the *DPDK Sample Application's User Guide*.
42
43 Memory Sharing
44 --------------
45
46 The key element in getting a multi-process application working using the DPDK is to ensure that
47 memory resources are properly shared among the processes making up the multi-process application.
48 Once there are blocks of shared memory available that can be accessed by multiple processes,
49 then issues such as inter-process communication (IPC) becomes much simpler.
50
51 On application start-up in a primary or standalone process,
52 the DPDK records to memory-mapped files the details of the memory configuration it is using - hugepages in use,
53 the virtual addresses they are mapped at, the number of memory channels present, etc.
54 When a secondary process is started, these files are read and the EAL recreates the same memory configuration
55 in the secondary process so that all memory zones are shared between processes and all pointers to that memory are valid,
56 and point to the same objects, in both processes.
57
58 .. note::
59
60     Refer to `Multi-process Limitations`_ for details of
61     how Linux kernel Address-Space Layout Randomization (ASLR) can affect memory sharing.
62
63 .. _figure_multi_process_memory:
64
65 .. figure:: img/multi_process_memory.*
66
67    Memory Sharing in the DPDK Multi-process Sample Application
68
69
70 The EAL also supports an auto-detection mode (set by EAL ``--proc-type=auto`` flag ),
71 whereby an DPDK process is started as a secondary instance if a primary instance is already running.
72
73 Deployment Models
74 -----------------
75
76 Symmetric/Peer Processes
77 ~~~~~~~~~~~~~~~~~~~~~~~~
78
79 DPDK multi-process support can be used to create a set of peer processes where each process performs the same workload.
80 This model is equivalent to having multiple threads each running the same main-loop function,
81 as is done in most of the supplied DPDK sample applications.
82 In this model, the first of the processes spawned should be spawned using the ``--proc-type=primary`` EAL flag,
83 while all subsequent instances should be spawned using the ``--proc-type=secondary`` flag.
84
85 The simple_mp and symmetric_mp sample applications demonstrate this usage model.
86 They are described in the "Multi-process Sample Application" chapter in the *DPDK Sample Application's User Guide*.
87
88 Asymmetric/Non-Peer Processes
89 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
90
91 An alternative deployment model that can be used for multi-process applications
92 is to have a single primary process instance that acts as a load-balancer or
93 server distributing received packets among worker or client threads, which are run as secondary processes.
94 In this case, extensive use of rte_ring objects is made, which are located in shared hugepage memory.
95
96 The client_server_mp sample application shows this usage model.
97 It is described in the "Multi-process Sample Application" chapter in the *DPDK Sample Application's User Guide*.
98
99 Running Multiple Independent DPDK Applications
100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
101
102 In addition to the above scenarios involving multiple DPDK processes working together,
103 it is possible to run multiple DPDK processes side-by-side,
104 where those processes are all working independently.
105 Support for this usage scenario is provided using the ``--file-prefix`` parameter to the EAL.
106
107 By default, the EAL creates hugepage files on each hugetlbfs filesystem using the rtemap_X filename,
108 where X is in the range 0 to the maximum number of hugepages -1.
109 Similarly, it creates shared configuration files, memory mapped in each process, using the /var/run/.rte_config filename,
110 when run as root (or $HOME/.rte_config when run as a non-root user;
111 if filesystem and device permissions are set up to allow this).
112 The rte part of the filenames of each of the above is configurable using the file-prefix parameter.
113
114 In addition to specifying the file-prefix parameter,
115 any DPDK applications that are to be run side-by-side must explicitly limit their memory use.
116 This is done by passing the -m flag to each process to specify how much hugepage memory, in megabytes,
117 each process can use (or passing ``--socket-mem`` to specify how much hugepage memory on each socket each process can use).
118
119 .. note::
120
121     Independent DPDK instances running side-by-side on a single machine cannot share any network ports.
122     Any network ports being used by one process should be blacklisted in every other process.
123
124 Running Multiple Independent Groups of DPDK Applications
125 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
126
127 In the same way that it is possible to run independent DPDK applications side- by-side on a single system,
128 this can be trivially extended to multi-process groups of DPDK applications running side-by-side.
129 In this case, the secondary processes must use the same ``--file-prefix`` parameter
130 as the primary process whose shared memory they are connecting to.
131
132 .. note::
133
134     All restrictions and issues with multiple independent DPDK processes running side-by-side
135     apply in this usage scenario also.
136
137 Multi-process Limitations
138 -------------------------
139
140 There are a number of limitations to what can be done when running DPDK multi-process applications.
141 Some of these are documented below:
142
143 *   The multi-process feature requires that the exact same hugepage memory mappings be present in all applications.
144     The Linux security feature - Address-Space Layout Randomization (ASLR) can interfere with this mapping,
145     so it may be necessary to disable this feature in order to reliably run multi-process applications.
146
147 .. warning::
148
149     Disabling Address-Space Layout Randomization (ASLR) may have security implications,
150     so it is recommended that it be disabled only when absolutely necessary,
151     and only when the implications of this change have been understood.
152
153 *   All DPDK processes running as a single application and using shared memory must have distinct coremask/corelist arguments.
154     It is not possible to have a primary and secondary instance, or two secondary instances,
155     using any of the same logical cores.
156     Attempting to do so can cause corruption of memory pool caches, among other issues.
157
158 *   The delivery of interrupts, such as Ethernet* device link status interrupts, do not work in secondary processes.
159     All interrupts are triggered inside the primary process only.
160     Any application needing interrupt notification in multiple processes should provide its own mechanism
161     to transfer the interrupt information from the primary process to any secondary process that needs the information.
162
163 *   The use of function pointers between multiple processes running based of different compiled binaries is not supported,
164     since the location of a given function in one process may be different to its location in a second.
165     This prevents the librte_hash library from behaving properly as in a multi-threaded instance,
166     since it uses a pointer to the hash function internally.
167
168 To work around this issue, it is recommended that multi-process applications perform the hash calculations by directly calling
169 the hashing function from the code and then using the rte_hash_add_with_hash()/rte_hash_lookup_with_hash() functions
170 instead of the functions which do the hashing internally, such as rte_hash_add()/rte_hash_lookup().
171
172 *   Depending upon the hardware in use, and the number of DPDK processes used,
173     it may not be possible to have HPET timers available in each DPDK instance.
174     The minimum number of HPET comparators available to Linux* userspace can be just a single comparator,
175     which means that only the first, primary DPDK process instance can open and mmap  /dev/hpet.
176     If the number of required DPDK processes exceeds that of the number of available HPET comparators,
177     the TSC (which is the default timer in this release) must be used as a time source across all processes instead of the HPET.