dm-queue-length.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. dm-queue-length
  2. ===============
  3. dm-queue-length is a path selector module for device-mapper targets,
  4. which selects a path with the least number of in-flight I/Os.
  5. The path selector name is 'queue-length'.
  6. Table parameters for each path: [<repeat_count>]
  7. <repeat_count>: The number of I/Os to dispatch using the selected
  8. path before switching to the next path.
  9. If not given, internal default is used. To check
  10. the default value, see the activated table.
  11. Status for each path: <status> <fail-count> <in-flight>
  12. <status>: 'A' if the path is active, 'F' if the path is failed.
  13. <fail-count>: The number of path failures.
  14. <in-flight>: The number of in-flight I/Os on the path.
  15. Algorithm
  16. =========
  17. dm-queue-length increments/decrements 'in-flight' when an I/O is
  18. dispatched/completed respectively.
  19. dm-queue-length selects a path with the minimum 'in-flight'.
  20. Examples
  21. ========
  22. In case that 2 paths (sda and sdb) are used with repeat_count == 128.
  23. # echo "0 10 multipath 0 0 1 1 queue-length 0 2 1 8:0 128 8:16 128" \
  24. dmsetup create test
  25. #
  26. # dmsetup table
  27. test: 0 10 multipath 0 0 1 1 queue-length 0 2 1 8:0 128 8:16 128
  28. #
  29. # dmsetup status
  30. test: 0 10 multipath 2 0 0 0 1 1 E 0 2 1 8:0 A 0 0 8:16 A 0 0