doc: update the SPDK iSCSI Target user guide

Add more information like Running Core, RPC related and so on.

Change-Id: Iad05d254255884a113031366614c75a324a8b5a3
Signed-off-by: GangCao <gang.cao@intel.com>
Reviewed-on: https://review.gerrithub.io/393355
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: <shuhei.matsumoto.xt@hitachi.com>
This commit is contained in:
GangCao 2018-01-01 22:26:05 -05:00 committed by Daniel Verkamp
parent e229b873e6
commit 6129c63a2b

View File

@ -8,8 +8,7 @@ This following section describes how to run iscsi from your cloned package.
## Prerequisites {#iscsi_prereqs} ## Prerequisites {#iscsi_prereqs}
This guide starts by assuming that you can already build the standard SPDK distribution on your This guide starts by assuming that you can already build the standard SPDK distribution on your
platform. The SPDK iSCSI target has been known to work on several Linux distributions, namely platform.
Ubuntu 14.04, 15.04, and 15.10, Fedora 21, 22, and 23, and CentOS 7.
Once built, the binary will be in `app/iscsi_tgt`. Once built, the binary will be in `app/iscsi_tgt`.
@ -27,6 +26,32 @@ TCP ports to use as iSCSI portals; general iSCSI parameters; initiator names and
access to iSCSI target nodes; number and types of storage backends to export over iSCSI LUNs; iSCSI access to iSCSI target nodes; number and types of storage backends to export over iSCSI LUNs; iSCSI
target node mappings between portal groups, initiator groups, and LUNs. target node mappings between portal groups, initiator groups, and LUNs.
You should make a copy of the example configuration file, modify it to suit your environment, and
then run the iscsi_tgt application and pass it the configuration file using the -c option. Right now,
the target requires elevated privileges (root) to run.
~~~
app/iscsi_tgt/iscsi_tgt -c /path/to/iscsi.conf
~~~
## Assigning CPU Cores to the iSCSI Target {#iscsi_config_lcore}
SPDK uses the [DPDK Environment Abstraction Layer](http://dpdk.org/doc/guides/prog_guide/env_abstraction_layer.html)
to gain access to hardware resources such as huge memory pages and CPU core(s). DPDK EAL provides
functions to assign threads to specific cores.
To ensure the SPDK iSCSI target has the best performance, place the NICs and the NVMe devices on the
same NUMA node and configure the target to run on CPU cores associated with that node. The following
parameters in the configuration file are used to configure SPDK iSCSI target:
**ReactorMask:** A hexadecimal bit mask of the CPU cores that SPDK is allowed to execute work
items on. The ReactorMask is located in the [Global] section of the configuration file. For example,
to assign lcores 24,25,26 and 27 to iSCSI target work items, set the ReactorMask to:
~~~{.sh}
ReactorMask 0xF000000
~~~
## Configuring a LUN in the iSCSI Target {#iscsi_lun}
Each LUN in an iSCSI target node is associated with an SPDK block device. See @ref bdev_getting_started Each LUN in an iSCSI target node is associated with an SPDK block device. See @ref bdev_getting_started
for details on configuring SPDK block devices. The block device to LUN mappings are specified in the for details on configuring SPDK block devices. The block device to LUN mappings are specified in the
configuration file as: configuration file as:
@ -41,12 +66,33 @@ This exports a malloc'd target. The disk is a RAM disk that is a chunk of memory
user space. It will use offload engine to do the copy job instead of memcpy if the system has enough DMA user space. It will use offload engine to do the copy job instead of memcpy if the system has enough DMA
channels. channels.
You should make a copy of the example configuration file, modify it to suit your environment, and ## Configuring iSCSI Target via RPC method {#iscsi_rpc}
then run the iscsi_tgt application and pass it the configuration file using the -c option. Right now,
the target requires elevated privileges (root) to run. In addition to the configuration file, the iSCSI target may also be configured via JSON-RPC calls. See
@ref jsonrpc for details.
### Add the portal group
~~~ ~~~
app/iscsi_tgt/iscsi_tgt -c /path/to/iscsi.conf python /path/to/spdk/scripts/rpc.py add_portal_group 1 127.0.0.1:3260
~~~
### Add the initiator group
~~~
python /path/to/spdk/scripts/rpc.py add_initiator_group 2 ANY 127.0.0.1/32
~~~
### Construct the backend block device
~~~
python /path/to/spdk/scripts/rpc.py construct_malloc_bdev -b MyBdev 64 512
~~~
### Construct the target node
~~~
python /path/to/spdk/scripts/rpc.py construct_target_node Target3 Target3_alias MyBdev:0 1:2 64 0 0 0 1
~~~ ~~~
## Configuring iSCSI Initiator {#iscsi_initiator} ## Configuring iSCSI Initiator {#iscsi_initiator}