redis-benchmarks-specification 0.2.42__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (336) hide show
  1. redis_benchmarks_specification/__api__/Readme.md +7 -0
  2. redis_benchmarks_specification/__api__/__init__.py +5 -0
  3. redis_benchmarks_specification/__api__/api.py +87 -0
  4. redis_benchmarks_specification/__api__/app.py +191 -0
  5. redis_benchmarks_specification/__builder__/Readme.md +7 -0
  6. redis_benchmarks_specification/__builder__/__init__.py +5 -0
  7. redis_benchmarks_specification/__builder__/builder.py +1010 -0
  8. redis_benchmarks_specification/__builder__/schema.py +23 -0
  9. redis_benchmarks_specification/__cli__/__init__.py +5 -0
  10. redis_benchmarks_specification/__cli__/args.py +226 -0
  11. redis_benchmarks_specification/__cli__/cli.py +624 -0
  12. redis_benchmarks_specification/__cli__/stats.py +1304 -0
  13. redis_benchmarks_specification/__common__/__init__.py +0 -0
  14. redis_benchmarks_specification/__common__/builder_schema.py +256 -0
  15. redis_benchmarks_specification/__common__/env.py +96 -0
  16. redis_benchmarks_specification/__common__/github.py +280 -0
  17. redis_benchmarks_specification/__common__/package.py +28 -0
  18. redis_benchmarks_specification/__common__/runner.py +485 -0
  19. redis_benchmarks_specification/__common__/spec.py +143 -0
  20. redis_benchmarks_specification/__common__/suppress_warnings.py +20 -0
  21. redis_benchmarks_specification/__common__/timeseries.py +1621 -0
  22. redis_benchmarks_specification/__compare__/__init__.py +5 -0
  23. redis_benchmarks_specification/__compare__/args.py +240 -0
  24. redis_benchmarks_specification/__compare__/compare.py +3322 -0
  25. redis_benchmarks_specification/__init__.py +15 -0
  26. redis_benchmarks_specification/__runner__/__init__.py +5 -0
  27. redis_benchmarks_specification/__runner__/args.py +334 -0
  28. redis_benchmarks_specification/__runner__/remote_profiling.py +535 -0
  29. redis_benchmarks_specification/__runner__/runner.py +3837 -0
  30. redis_benchmarks_specification/__self_contained_coordinator__/__init__.py +5 -0
  31. redis_benchmarks_specification/__self_contained_coordinator__/args.py +210 -0
  32. redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py +27 -0
  33. redis_benchmarks_specification/__self_contained_coordinator__/build_info.py +61 -0
  34. redis_benchmarks_specification/__self_contained_coordinator__/clients.py +58 -0
  35. redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py +17 -0
  36. redis_benchmarks_specification/__self_contained_coordinator__/docker.py +108 -0
  37. redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py +19 -0
  38. redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py +96 -0
  39. redis_benchmarks_specification/__self_contained_coordinator__/runners.py +740 -0
  40. redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py +2554 -0
  41. redis_benchmarks_specification/__setups__/__init__.py +0 -0
  42. redis_benchmarks_specification/__setups__/topologies.py +17 -0
  43. redis_benchmarks_specification/__spec__/__init__.py +5 -0
  44. redis_benchmarks_specification/__spec__/args.py +78 -0
  45. redis_benchmarks_specification/__spec__/cli.py +259 -0
  46. redis_benchmarks_specification/__watchdog__/__init__.py +5 -0
  47. redis_benchmarks_specification/__watchdog__/args.py +54 -0
  48. redis_benchmarks_specification/__watchdog__/watchdog.py +175 -0
  49. redis_benchmarks_specification/commands/__init__.py +0 -0
  50. redis_benchmarks_specification/commands/commands.py +15 -0
  51. redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-bookworm-default.yml +20 -0
  52. redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-bookworm-default.yml +20 -0
  53. redis_benchmarks_specification/setups/platforms/aws-ec2-1node-c5.4xlarge.yml +27 -0
  54. redis_benchmarks_specification/setups/topologies/topologies.yml +153 -0
  55. redis_benchmarks_specification/test-suites/defaults.yml +32 -0
  56. redis_benchmarks_specification/test-suites/generate.py +114 -0
  57. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpire-5-fields-10B-values.yml +43 -0
  58. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpire-50-fields-10B-values.yml +53 -0
  59. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpireat-5-fields-10B-values.yml +43 -0
  60. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hexpireat-50-fields-10B-values.yml +53 -0
  61. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml +52 -0
  62. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-5-fields-10B-values.yml +43 -0
  63. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-50-fields-10B-values.yml +53 -0
  64. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetex-persist-50-fields-10B-values.yml +53 -0
  65. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpire-5-fields-10B-values.yml +43 -0
  66. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpire-50-fields-10B-values.yml +53 -0
  67. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpireat-5-fields-10B-values.yml +43 -0
  68. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hpexpireat-50-fields-10B-values.yml +53 -0
  69. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-htll-50-fields-10B-values.yml +53 -0
  70. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-1-fields-with-1000B-values-expiration.yml +35 -0
  71. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-1-fields-with-10B-values-expiration.yml +34 -0
  72. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-1-fields-with-10B-values-long-expiration.yml +35 -0
  73. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-1-fields-with-10B-values-short-expiration.yml +35 -0
  74. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-20-fields-with-1B-values-pipeline-30.yml +43 -0
  75. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-5-fields-with-1000B-values-expiration.yml +36 -0
  76. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-5-fields-with-10B-values-expiration.yml +35 -0
  77. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-5-fields-with-10B-values-long-expiration.yml +36 -0
  78. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-5-fields-with-10B-values-short-expiration.yml +36 -0
  79. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-1000B-values-expiration.yml +45 -0
  80. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-1000B-values.yml +44 -0
  81. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-100B-values.yml +44 -0
  82. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-expiration.yml +44 -0
  83. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-long-expiration.yml +45 -0
  84. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values-short-expiration.yml +45 -0
  85. redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-50-fields-with-10B-values.yml +43 -0
  86. redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-hash-50-fields-with-10000B-values.yml +44 -0
  87. redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-rpush-bulkload-pipeline-50.yml +39 -0
  88. redis_benchmarks_specification/test-suites/memtier_benchmark-10Kkeys-load-list-with-10B-values-pipeline-50.yml +33 -0
  89. redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values-pipeline-10.yml +33 -0
  90. redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml +33 -0
  91. redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml +34 -0
  92. redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml +33 -0
  93. redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +38 -0
  94. redis_benchmarks_specification/test-suites/memtier_benchmark-1Kkeys-hash-listpack-500-fields-update-20-fields-with-1B-to-64B-values.yml +75 -0
  95. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml +50 -0
  96. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml +50 -0
  97. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml +43 -0
  98. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml +43 -0
  99. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml +49 -0
  100. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml +50 -0
  101. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml +42 -0
  102. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-exists-pipeline-10.yml +41 -0
  103. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expire-pipeline-10.yml +41 -0
  104. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expireat-pipeline-10.yml +41 -0
  105. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-pexpire-pipeline-10.yml +41 -0
  106. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-count-500-pipeline-10.yml +41 -0
  107. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-500-pipeline-10.yml +42 -0
  108. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-count-5000-pipeline-10.yml +42 -0
  109. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-cursor-pipeline-10.yml +42 -0
  110. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-pipeline-10.yml +41 -0
  111. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-scan-type-pipeline-10.yml +41 -0
  112. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-touch-pipeline-10.yml +41 -0
  113. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-ttl-pipeline-10.yml +41 -0
  114. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hexists.yml +45 -0
  115. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hget-hgetall-hkeys-hvals-with-100B-values.yml +48 -0
  116. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hgetall-50-fields-10B-values.yml +53 -0
  117. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrby.yml +42 -0
  118. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrbyfloat.yml +42 -0
  119. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hkeys-10-fields-with-10B-values-with-expiration-pipeline-10.yml +45 -0
  120. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hkeys-5-fields-with-100B-values-with-expiration-pipeline-10.yml +44 -0
  121. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hkeys-5-fields-with-10B-values-with-expiration-pipeline-10.yml +44 -0
  122. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hkeys-50-fields-with-10B-values-with-expiration-pipeline-10.yml +54 -0
  123. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hmget-5-fields-with-100B-values-pipeline-10.yml +44 -0
  124. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-transactions-multi-exec-pipeline-20.yml +43 -0
  125. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-100B-values.yml +44 -0
  126. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-10B-values.yml +44 -0
  127. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-lpop-rpop-with-1KiB-values.yml +44 -0
  128. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-list-rpoplpush-with-10B-values.yml +42 -0
  129. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values-pipeline-10.yml +34 -0
  130. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-5-fields-with-1000B-values.yml +33 -0
  131. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-50-fields-with-10B-values-long-expiration-pipeline-10.yml +46 -0
  132. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-hash-hmset-5-fields-with-1000B-values.yml +33 -0
  133. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-rpush-with-10B-values.yml +32 -0
  134. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-100B-values.yml +32 -0
  135. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values-pipeline-10.yml +33 -0
  136. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-10B-values.yml +32 -0
  137. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-list-with-1KiB-values.yml +32 -0
  138. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10.yml +58 -0
  139. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits.yml +58 -0
  140. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-pipeline-10.yml +41 -0
  141. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements.yml +40 -0
  142. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values-pipeline-10.yml +33 -0
  143. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-1-fields-with-100B-values.yml +33 -0
  144. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values-pipeline-10.yml +34 -0
  145. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-stream-5-fields-with-100B-values.yml +33 -0
  146. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values-pipeline-10.yml +32 -0
  147. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-100B-values.yml +35 -0
  148. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-10.yml +33 -0
  149. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100-nokeyprefix.yml +29 -0
  150. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-100.yml +33 -0
  151. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-50.yml +33 -0
  152. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values-pipeline-500.yml +33 -0
  153. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-10B-values.yml +32 -0
  154. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values-pipeline-10.yml +32 -0
  155. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-1KiB-values.yml +32 -0
  156. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-20KiB-values.yml +35 -0
  157. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-listpack-with-100-elements-double-score.yml +91 -0
  158. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-double-score.yml +35 -0
  159. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-int-score.yml +34 -0
  160. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml +43 -0
  161. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B.yml +42 -0
  162. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml +41 -0
  163. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml +41 -0
  164. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml +41 -0
  165. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml +41 -0
  166. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +38 -0
  167. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml +41 -0
  168. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml +41 -0
  169. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml +41 -0
  170. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B.yml +41 -0
  171. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB-pipeline-10.yml +41 -0
  172. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1KiB.yml +41 -0
  173. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B-pipeline-10.yml +40 -0
  174. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-32B.yml +40 -0
  175. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incr-pipeline-10.yml +30 -0
  176. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml +30 -0
  177. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml +30 -0
  178. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml +30 -0
  179. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml +30 -0
  180. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-int-encoding-strlen-pipeline-10.yml +40 -0
  181. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml +41 -0
  182. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire-pipeline-10.yml +45 -0
  183. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-expire.yml +45 -0
  184. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B-pipeline-10.yml +43 -0
  185. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-100B.yml +42 -0
  186. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB-pipeline-10.yml +42 -0
  187. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-1KB.yml +41 -0
  188. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B-pipeline-10.yml +43 -0
  189. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml +42 -0
  190. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml +43 -0
  191. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml +42 -0
  192. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml +47 -0
  193. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml +41 -0
  194. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml +41 -0
  195. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-1.yml +43 -0
  196. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml +43 -0
  197. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-1.yml +43 -0
  198. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-4KiB-pipeline-10.yml +43 -0
  199. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-1.yml +43 -0
  200. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setget200c-512B-pipeline-10.yml +43 -0
  201. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml +42 -0
  202. redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml +42 -0
  203. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-100M-bits-bitmap-bitcount.yml +45 -0
  204. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-1Billion-bits-bitmap-bitcount.yml +45 -0
  205. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml +38 -0
  206. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml +39 -0
  207. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml +36 -0
  208. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist.yml +36 -0
  209. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash-pipeline-10.yml +35 -0
  210. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash.yml +34 -0
  211. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos-pipeline-10.yml +35 -0
  212. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geopos.yml +34 -0
  213. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-bybox.yml +36 -0
  214. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat-pipeline-10.yml +36 -0
  215. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geosearch-fromlonlat.yml +36 -0
  216. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall-pipeline-10.yml +285 -0
  217. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-1K-fields-hgetall.yml +284 -0
  218. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-100B-values-cursor-count-1000.yml +291 -0
  219. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values-cursor-count-100.yml +291 -0
  220. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-1K-fields-10B-values.yml +290 -0
  221. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-hash-hscan-50-fields-10B-values.yml +54 -0
  222. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements-pipeline-10.yml +37 -0
  223. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10-elements-lrange-all-elements.yml +36 -0
  224. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-7bit-uint-lrange-all-elements-pipeline-10.yml +44 -0
  225. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-int-lrange-all-elements-pipeline-10.yml +52 -0
  226. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-llen-pipeline-10.yml +52 -0
  227. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements-pipeline-10.yml +52 -0
  228. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-100-elements-lrange-all-elements.yml +51 -0
  229. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-integer.yml +41 -0
  230. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string-pipeline-10.yml +42 -0
  231. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lindex-string.yml +41 -0
  232. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-integer.yml +45 -0
  233. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-linsert-lrem-string.yml +45 -0
  234. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-integer.yml +41 -0
  235. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-10K-elements-lpos-string.yml +41 -0
  236. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements-pipeline-10.yml +202 -0
  237. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-1K-elements-lrange-all-elements.yml +201 -0
  238. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-list-2K-elements-quicklist-lrange-all-elements-longs.yml +258 -0
  239. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-hash-1K-fields-with-5B-values.yml +282 -0
  240. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-float-score.yml +36 -0
  241. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-load-zset-with-5-elements-parsing-hexa-score.yml +36 -0
  242. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-pfadd-4KB-values-pipeline-10.yml +32 -0
  243. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers-pipeline-10.yml +37 -0
  244. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers.yml +36 -0
  245. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smismember.yml +38 -0
  246. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml +53 -0
  247. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml +53 -0
  248. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smembers.yml +50 -0
  249. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smismember.yml +54 -0
  250. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sscan.yml +50 -0
  251. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml +41 -0
  252. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-srem-50pct-chance.yml +40 -0
  253. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-smembers.yml +200 -0
  254. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml +201 -0
  255. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml +200 -0
  256. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml +40 -0
  257. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml +41 -0
  258. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml +32 -0
  259. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml +40 -0
  260. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml +40 -0
  261. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml +41 -0
  262. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml +40 -0
  263. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrem-5M-elements-pipeline-1.yml +47 -0
  264. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-1.yml +41 -0
  265. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-10.yml +41 -0
  266. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrank-1M-elements-pipeline-1.yml +40 -0
  267. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements-long-scores.yml +41 -0
  268. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-10-elements-zrange-all-elements.yml +40 -0
  269. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrange-all-elements.yml +66 -0
  270. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements-long-scores.yml +66 -0
  271. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements.yml +66 -0
  272. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zscan.yml +65 -0
  273. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zrange-all-elements.yml +322 -0
  274. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.yml +321 -0
  275. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zcard-pipeline-10.yml +39 -0
  276. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zremrangebyscore-pipeline-10.yml +41 -0
  277. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-5-elements.yml +40 -0
  278. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-withscores-5-elements-pipeline-10.yml +41 -0
  279. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zscore-pipeline-10.yml +40 -0
  280. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-1K-elements.yml +41 -0
  281. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-600K-elements-zrangestore-300K-elements.yml +43 -0
  282. redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-listpack-zrank-100-elements-pipeline-1.yml +50 -0
  283. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-eval-hset-expire.yml +37 -0
  284. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-lua-evalsha-hset-expire.yml +41 -0
  285. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sdiff.yml +57 -0
  286. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sinter.yml +57 -0
  287. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sunion.yml +57 -0
  288. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml +46 -0
  289. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml +46 -0
  290. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunion.yml +434 -0
  291. redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-zset-300-elements-skiplist-encoded-zunionstore.yml +434 -0
  292. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values-pipeline-10.yml +37 -0
  293. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml +37 -0
  294. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns.yml +45 -0
  295. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns.yml +45 -0
  296. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-2000_conns.yml +46 -0
  297. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-400_conns.yml +46 -0
  298. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-40_conns.yml +46 -0
  299. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns.yml +45 -0
  300. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml +46 -0
  301. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml +46 -0
  302. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml +46 -0
  303. redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml +43 -0
  304. redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello-pipeline-10.yml +32 -0
  305. redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml +32 -0
  306. redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfcount-100B-values.yml +34 -0
  307. redis_benchmarks_specification/test-suites/memtier_benchmark-multiple-hll-pfmerge-100B-values.yml +34 -0
  308. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-connection-ping-pipeline-10.yml +29 -0
  309. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers.yml +40 -0
  310. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers.yml +40 -0
  311. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers.yml +40 -0
  312. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-50K-subscribers-5k-conns.yml +40 -0
  313. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publish-1K-channels-10B-no-subscribers.yml +30 -0
  314. redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml +29 -0
  315. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-10.yml +68 -0
  316. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-100.yml +69 -0
  317. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-leaderboard-top-1000.yml +68 -0
  318. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-rate-limiting-lua-100k-sessions.yml +64 -0
  319. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership-pipeline-10.yml +56 -0
  320. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-realtime-analytics-membership.yml +56 -0
  321. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-hash-100k-sessions.yml +108 -0
  322. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-json-100k-sessions.yml +109 -0
  323. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-caching-string-100k-sessions.yml +98 -0
  324. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-100k-sessions.yml +205 -0
  325. redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml +205 -0
  326. redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xread-count-100.yml +36 -0
  327. redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100-noack.yml +38 -0
  328. redis_benchmarks_specification/test-suites/memtier_benchmark-stream-10M-entries-xreadgroup-count-100.yml +38 -0
  329. redis_benchmarks_specification/test-suites/memtier_benchmark-stream-concurrent-xadd-xreadgroup-70-30.yml +50 -0
  330. redis_benchmarks_specification/test-suites/template.txt +18 -0
  331. redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml +41 -0
  332. redis_benchmarks_specification-0.2.42.dist-info/LICENSE +201 -0
  333. redis_benchmarks_specification-0.2.42.dist-info/METADATA +434 -0
  334. redis_benchmarks_specification-0.2.42.dist-info/RECORD +336 -0
  335. redis_benchmarks_specification-0.2.42.dist-info/WHEEL +4 -0
  336. redis_benchmarks_specification-0.2.42.dist-info/entry_points.txt +10 -0
@@ -0,0 +1,258 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-list-2K-elements-quicklist-lrange-all-elements-longs
3
+ description: 'Runs memtier_benchmark, for a keyspace length of 1 LIST key. The LIST
4
+ contains 2000 numeric elements in it (encoding:quicklist serializedlength:9669)
5
+ and we query it using LRANGE with a range of all elements. '
6
+ dbconfig:
7
+ configuration-parameters:
8
+ save: '""'
9
+ check:
10
+ keyspacelen: 1
11
+ resources:
12
+ requests:
13
+ memory: 1g
14
+ init_commands:
15
+ - '"LPUSH" "int:2000" "436858" "768277" "10664" "860016" "865292" "841848" "313147"
16
+ "896678" "386308" "977048" "203069" "283373" "593503" "457419" "169542" "391186"
17
+ "130304" "916639" "453967" "273773" "589383" "657683" "182813" "641487" "580095"
18
+ "195884" "372142" "774005" "768470" "95729" "556839" "771113" "432139" "613472"
19
+ "528415" "174665" "155343" "215707" "753892" "81624" "199200" "877732" "358153"
20
+ "337683" "24664" "481128" "356011" "28176" "535519" "724263" "780697" "435661"
21
+ "3623" "6998" "985912" "696150" "913066" "171765" "808279" "608289" "187563" "300496"
22
+ "104333" "684239" "434669" "111037" "928553" "714514" "606168" "190478" "772363"
23
+ "393219" "243921" "549032" "624950" "743846" "957491" "864902" "345918" "846332"
24
+ "42207" "243593" "125622" "915607" "523476" "226892" "773003" "840853" "792775"
25
+ "582050" "702242" "194856" "270254" "617201" "454742" "543414" "960526" "136178"
26
+ "43558" "172112" "315964" "906548" "872631" "9812" "157573" "240243" "366716"
27
+ "565328" "358579" "164607" "404765" "339488" "13466" "51715" "63848" "746248"
28
+ "466736" "82380" "406953" "837894" "965288" "188204" "827148" "12278" "809927"
29
+ "746938" "385617" "225812" "711676" "537420" "798238" "127408" "504131" "652057"
30
+ "64514" "14489" "656518" "515681" "341585" "809488" "639725" "441271" "967421"
31
+ "998801" "576518" "211388" "381983" "806205" "695045" "732496" "125181" "583599"
32
+ "156930" "83935" "518933" "172965" "935860" "351856" "241847" "213126" "171488"
33
+ "170662" "302300" "157438" "563212" "94997" "544855" "729516" "3494" "153660"
34
+ "3340" "689632" "520164" "928975" "193834" "875837" "637011" "979170" "837250"
35
+ "891931" "100531" "277117" "529707" "786457" "425867" "69329" "828851" "787959"
36
+ "483253" "436961" "190776" "255085" "963573" "921147" "193275" "28601" "391029"
37
+ "346519" "184509" "413952" "186492" "186630" "599412" "712964" "863478" "543442"
38
+ "936725" "261034" "433325" "538136" "725493" "437815" "340750" "125982" "70995"
39
+ "675010" "482873" "779685" "204540" "658657" "651494" "598984" "211697" "785541"
40
+ "141585" "556755" "937387" "244571" "346333" "595449" "306505" "131451" "564406"
41
+ "535119" "727064" "808854" "703592" "934789" "837177" "62079" "272563" "814964"
42
+ "447612" "46180" "381641" "838054" "541786" "561934" "601932" "112792" "659857"
43
+ "795689" "71255" "163760" "389250" "923106" "742984" "665644" "37044" "288286"
44
+ "782488" "465661" "719220" "386595" "421309" "322180" "470991" "640024" "277182"
45
+ "326998" "773033" "516432" "503742" "52811" "278009" "467202" "30779" "230305"
46
+ "361834" "142680" "965731" "2134" "708990" "655992" "843666" "979246" "87183"
47
+ "32092" "116456" "631722" "914509" "197081" "904867" "416227" "514356" "190669"
48
+ "285867" "366090" "218685" "945164" "314729" "760629" "330622" "887402" "407140"
49
+ "79151" "646816" "315458" "386302" "822253" "906996" "42417" "439624" "198939"
50
+ "168324" "85834" "149784" "857270" "321402" "243528" "349001" "444903" "210665"
51
+ "14530" "157184" "119189" "997937" "538965" "33058" "829750" "357593" "411186"
52
+ "334862" "908574" "42795" "253083" "104455" "508180" "155730" "606487" "216277"
53
+ "271744" "597530" "558217" "376328" "166080" "777249" "297911" "39860" "897875"
54
+ "913783" "96233" "98552" "553234" "217399" "576166" "528693" "689225" "430060"
55
+ "549443" "15953" "815596" "545250" "158967" "617025" "557444" "341163" "616649"
56
+ "799559" "819669" "943718" "171664" "479697" "434726" "460969" "25763" "389810"
57
+ "694741" "28682" "910195" "407303" "370701" "706901" "855917" "567185" "689993"
58
+ "623147" "17867" "334745" "493083" "458903" "47961" "334509" "328438" "408398"
59
+ "839531" "312968" "131555" "398163" "592833" "652770" "59474" "597960" "115161"
60
+ "509790" "998417" "124464" "101091" "644649" "182572" "34876" "985741" "53703"
61
+ "323854" "875562" "227007" "550581" "101142" "482813" "523513" "491884" "61752"
62
+ "443921" "230743" "946890" "232909" "345530" "781343" "822686" "170006" "401816"
63
+ "616708" "569667" "253432" "719359" "494477" "968731" "189184" "943807" "218596"
64
+ "580591" "602277" "976073" "577930" "670942" "224269" "167134" "705443" "767924"
65
+ "477576" "890542" "795902" "15154" "682212" "204388" "76770" "822399" "943411"
66
+ "805359" "73138" "587812" "847082" "128252" "99053" "278139" "594384" "247166"
67
+ "223966" "291110" "236271" "521846" "388102" "769855" "722504" "468434" "695381"
68
+ "423149" "589502" "261236" "682284" "472491" "907025" "877757" "958352" "528938"
69
+ "113715" "543301" "31592" "537791" "957970" "566443" "954483" "713962" "385855"
70
+ "250435" "419113" "517175" "718181" "86422" "441985" "488173" "116422" "343678"
71
+ "261328" "465793" "318474" "445261" "593700" "130660" "179528" "228553" "764028"
72
+ "646824" "965387" "403539" "274961" "598019" "923598" "667153" "815111" "836745"
73
+ "184554" "659674" "5872" "541611" "767738" "755502" "289703" "24909" "845510"
74
+ "985445" "502599" "942285" "348442" "727521" "661854" "211413" "828765" "655994"
75
+ "316895" "29491" "762445" "417019" "384854" "225832" "981658" "588501" "262593"
76
+ "241641" "96764" "964723" "832427" "213940" "263478" "962888" "586899" "6134"
77
+ "17353" "158687" "590834" "610309" "827589" "973885" "823125" "139784" "344342"
78
+ "223546" "134642" "878290" "639083" "653249" "321397" "534986" "299701" "30404"
79
+ "220321" "449561" "412428" "966311" "715345" "609270" "421049" "829395" "677850"
80
+ "671528" "763180" "692591" "849708" "461540" "598518" "589793" "293581" "526463"
81
+ "296191" "563278" "76688" "690304" "500480" "890913" "736045" "505988" "961370"
82
+ "680450" "166370" "943022" "442498" "49813" "737688" "103105" "768309" "943679"
83
+ "870338" "125027" "279297" "695712" "330005" "931052" "432772" "767508" "411427"
84
+ "499969" "97202" "408694" "721825" "673594" "127058" "775391" "451832" "241043"
85
+ "650828" "7650" "787590" "481138" "163078" "657396" "15019" "373244" "167904"
86
+ "882445" "711911" "282971" "957686" "151461" "406074" "168192" "327154" "338171"
87
+ "657734" "630014" "331547" "450791" "41116" "371386" "257199" "724255" "629714"
88
+ "904905" "480039" "28038" "363750" "703912" "411214" "522003" "143780" "636539"
89
+ "804682" "802249" "392202" "905746" "723491" "874646" "595374" "866243" "943836"
90
+ "313183" "835134" "574073" "138715" "523132" "473353" "725538" "11689" "488923"
91
+ "791770" "385455" "241968" "429345" "494715" "236378" "646665" "532900" "356576"
92
+ "515468" "309836" "867520" "624083" "239700" "923899" "435608" "335167" "958930"
93
+ "102220" "157225" "194735" "559763" "48533" "797574" "741730" "719386" "992134"
94
+ "791320" "128917" "818809" "405787" "131239" "388507" "67269" "210144" "691095"
95
+ "225520" "1203" "100294" "353435" "273505" "616209" "261097" "684122" "564413"
96
+ "645501" "290340" "995510" "643263" "600889" "325623" "363553" "330294" "410730"
97
+ "22465" "609238" "126942" "617305" "459460" "461642" "672889" "330853" "247129"
98
+ "267507" "104264" "179525" "718216" "304029" "704873" "63788" "524692" "134924"
99
+ "147798" "553464" "206477" "735270" "281124" "221241" "894221" "267607" "971140"
100
+ "375862" "49454" "83470" "982265" "735342" "957022" "148213" "831380" "777134"
101
+ "244611" "746281" "46800" "847946" "863788" "146141" "20625" "37523" "150946"
102
+ "396359" "444989" "607710" "441290" "25850" "181593" "161912" "705482" "534803"
103
+ "541780" "151296" "515831" "859744" "109838" "373756" "784104" "78507" "777554"
104
+ "163532" "23518" "75349" "846179" "892004" "371540" "138564" "978458" "378382"
105
+ "358684" "222153" "308846" "205336" "567811" "347648" "425479" "74171" "347667"
106
+ "170396" "263500" "495474" "976044" "579019" "177820" "584614" "750432" "138416"
107
+ "403335" "25805" "465927" "153851" "926901" "943170" "268621" "142965" "807760"
108
+ "716872" "161996" "582482" "770063" "629222" "265142" "982415" "725188" "268084"
109
+ "303891" "736676" "2396" "542680" "592046" "386441" "746019" "420580" "579956"
110
+ "212192" "395017" "105733" "943903" "966110" "114281" "671424" "565450" "178101"
111
+ "486460" "842126" "526188" "193699" "78651" "694433" "876355" "615143" "114365"
112
+ "835481" "113034" "432281" "159469" "795151" "754018" "47648" "471006" "667361"
113
+ "126950" "423807" "270640" "299483" "138778" "549442" "546479" "236104" "845000"
114
+ "964861" "778232" "184885" "668022" "102659" "447587" "154447" "291991" "255772"
115
+ "842929" "125548" "703817" "329281" "695841" "415349" "585332" "829060" "775984"
116
+ "617483" "824172" "276129" "223868" "391686" "409479" "324785" "5495" "305839"
117
+ "942063" "935498" "746123" "743923" "643435" "454326" "472809" "438795" "508966"
118
+ "110249" "497493" "497606" "230819" "616372" "48274" "367285" "183124" "531872"
119
+ "198882" "229429" "957341" "787465" "80765" "947148" "991977" "833074" "611099"
120
+ "851759" "904236" "843689" "581597" "218789" "186052" "138432" "183882" "673112"
121
+ "4885" "868094" "923298" "106934" "135257" "15080" "955761" "992980" "793990"
122
+ "954226" "61549" "274140" "127960" "869322" "559015" "313089" "882398" "854039"
123
+ "13603" "504924" "637944" "613051" "235674" "354898" "666751" "97666" "26282"
124
+ "13685" "678666" "431954" "104637" "324147" "465170" "73372" "77033" "402233"
125
+ "998197" "163570" "473102" "343904" "492371" "775728" "691132" "150719" "664393"
126
+ "869873" "548970" "393512" "894173" "260596" "430775" "896965" "151153" "453583"
127
+ "718570" "878052" "374524" "737877" "980178" "236181" "409143" "993943" "14522"
128
+ "484145" "360559" "124255" "732000" "501206" "949780" "862822" "938958" "385832"
129
+ "125612" "637972" "286567" "79608" "551571" "212315" "27596" "109087" "422064"
130
+ "687569" "339144" "584902" "518482" "680284" "191122" "251585" "786171" "281184"
131
+ "448343" "25778" "154452" "127576" "179129" "399977" "244880" "942914" "114249"
132
+ "197419" "762760" "427612" "689058" "13446" "197047" "617382" "468553" "441250"
133
+ "526814" "347288" "590899" "408774" "440592" "285978" "964368" "427906" "56544"
134
+ "193750" "687953" "747169" "751240" "978464" "950854" "101749" "384224" "464568"
135
+ "12193" "322488" "806262" "51216" "483967" "694052" "571729" "858272" "687651"
136
+ "108996" "851029" "798032" "543103" "468700" "455526" "845363" "137842" "945342"
137
+ "43892" "89654" "173445" "850867" "162179" "460098" "986502" "995786" "594388"
138
+ "459654" "28767" "333682" "899804" "431997" "342609" "875010" "360179" "433351"
139
+ "588695" "573381" "512284" "276877" "665923" "338840" "444580" "83622" "188195"
140
+ "820966" "260683" "512728" "505349" "766922" "799570" "599960" "561767" "93319"
141
+ "354922" "281904" "570250" "335720" "844468" "821197" "506060" "363316" "578049"
142
+ "835386" "324902" "724311" "897487" "557416" "370237" "726012" "190847" "355177"
143
+ "78247" "107195" "480402" "899952" "454722" "481867" "828252" "472809" "767536"
144
+ "746592" "602279" "213927" "447823" "234091" "719459" "802159" "254152" "857357"
145
+ "370351" "481641" "335166" "456907" "858324" "426628" "995971" "550711" "101900"
146
+ "825364" "25696" "745514" "369825" "765734" "715784" "960486" "459013" "888466"
147
+ "796973" "23581" "840099" "698651" "254598" "698439" "39533" "150115" "391365"
148
+ "613458" "893648" "658090" "206" "204695" "849953" "27158" "304939" "711157" "415570"
149
+ "525577" "678086" "188982" "210530" "723510" "912691" "347506" "333025" "873778"
150
+ "357894" "442791" "852967" "256734" "832694" "202737" "976378" "489591" "927714"
151
+ "873157" "2480" "244498" "239854" "933261" "611173" "882131" "243037" "831814"
152
+ "892423" "464912" "772106" "185102" "792763" "43005" "989772" "984388" "742051"
153
+ "878505" "977607" "489160" "145427" "142443" "488942" "541697" "697998" "994816"
154
+ "369740" "644061" "238271" "337807" "31036" "103295" "166257" "140670" "913070"
155
+ "128570" "812550" "745207" "126098" "344378" "624333" "455719" "606721" "931708"
156
+ "348265" "813934" "685249" "532890" "366014" "221043" "404351" "90146" "447211"
157
+ "207252" "466164" "217310" "122566" "167407" "672951" "184497" "583254" "390128"
158
+ "117071" "841532" "130359" "675415" "288278" "149526" "357187" "974691" "818566"
159
+ "233201" "530778" "897625" "594077" "801548" "501295" "788175" "30833" "278263"
160
+ "291644" "510794" "348752" "849821" "380" "925727" "344006" "908190" "785920"
161
+ "838529" "530522" "690199" "588303" "27379" "785469" "383490" "638271" "743507"
162
+ "805563" "254750" "23238" "66029" "745248" "622830" "180482" "805662" "229401"
163
+ "379518" "763586" "306579" "470495" "485359" "33598" "38483" "712936" "825163"
164
+ "935757" "933384" "543169" "73879" "589993" "592692" "96682" "821917" "336376"
165
+ "229347" "620859" "446406" "841913" "340322" "542457" "872158" "16602" "616773"
166
+ "113223" "581906" "907169" "210702" "650574" "728867" "316546" "143635" "140111"
167
+ "440872" "614041" "929576" "910079" "990389" "740652" "203052" "787838" "948421"
168
+ "900834" "491510" "345824" "172437" "439399" "939929" "387869" "996403" "806416"
169
+ "138232" "375872" "963706" "235842" "468692" "969600" "792635" "747412" "930525"
170
+ "970457" "449395" "764849" "930419" "518950" "765480" "782532" "859711" "316555"
171
+ "967687" "261794" "450615" "88211" "964528" "258829" "433808" "897408" "192646"
172
+ "568511" "610645" "671995" "537064" "10240" "635743" "355900" "762299" "288343"
173
+ "508340" "12581" "714893" "328243" "448759" "269690" "507144" "114056" "946330"
174
+ "268021" "353766" "902165" "789237" "225994" "572361" "733874" "7696" "843334"
175
+ "9522" "681526" "745629" "392195" "140944" "167108" "193793" "690507" "322899"
176
+ "422146" "962516" "532958" "918815" "730553" "96216" "475060" "828504" "621930"
177
+ "88688" "376122" "398985" "954839" "922355" "748095" "115077" "593029" "594620"
178
+ "790334" "441002" "79269" "707899" "113754" "900374" "739919" "584750" "175924"
179
+ "977413" "37614" "939940" "706468" "171416" "329174" "59726" "207604" "260734"
180
+ "532584" "865515" "728734" "735348" "895831" "635682" "766592" "221545" "686124"
181
+ "660747" "630170" "115654" "685879" "734822" "419547" "157176" "694996" "387476"
182
+ "876883" "729571" "898065" "397562" "753513" "297404" "708434" "826676" "75853"
183
+ "26005" "343896" "333053" "477743" "105157" "321972" "1777" "207890" "290282"
184
+ "392874" "785708" "873966" "31258" "280195" "379704" "980980" "656817" "6636"
185
+ "465046" "442454" "980961" "756339" "538514" "791502" "507898" "12513" "536783"
186
+ "120748" "999694" "74234" "551400" "592610" "797388" "99316" "933810" "415627"
187
+ "791232" "295938" "878879" "107456" "672360" "392896" "772125" "456668" "97423"
188
+ "606461" "993629" "362044" "436856" "72245" "981185" "344946" "564508" "727816"
189
+ "789824" "3752" "641587" "547181" "353045" "20472" "906194" "876436" "206216"
190
+ "429327" "559539" "690947" "95807" "331000" "573885" "279467" "831349" "959010"
191
+ "348561" "828074" "711861" "937102" "314394" "8159" "509066" "844930" "191277"
192
+ "51393" "404553" "912846" "302410" "940963" "752508" "190595" "635784" "887340"
193
+ "768839" "785928" "90979" "847516" "905373" "91658" "771465" "250338" "546981"
194
+ "283192" "885354" "720984" "412719" "11421" "404639" "850960" "526370" "920476"
195
+ "789896" "889196" "880624" "406033" "886159" "932090" "297019" "77356" "54957"
196
+ "967005" "98905" "120537" "669093" "781905" "888655" "88345" "244648" "793235"
197
+ "158380" "1880" "997435" "720273" "790707" "259329" "207961" "676275" "194071"
198
+ "797221" "369744" "686353" "334838" "77591" "248908" "21745" "812755" "401269"
199
+ "374677" "951067" "82288" "487047" "206191" "275554" "573399" "493517" "682412"
200
+ "860311" "789801" "217148" "442980" "129400" "211218" "963082" "860262" "444686"
201
+ "849664" "465355" "614234" "326015" "486560" "256339" "424955" "903818" "384078"
202
+ "841476" "541236" "266398" "795277" "760195" "628673" "963685" "412289" "438029"
203
+ "582559" "661075" "95219" "10937" "878425" "347897" "892134" "120635" "264505"
204
+ "846649" "290280" "539001" "285179" "682180" "143233" "529757" "850505" "693382"
205
+ "732301" "450287" "826296" "476027" "673305" "947915" "274100" "984141" "91378"
206
+ "406247" "271022" "269329" "826607" "427211" "20595" "535122" "559352" "555950"
207
+ "337036" "404636" "302526" "166927" "351020" "620375" "177142" "251314" "166774"
208
+ "895630" "890837" "382425" "791133" "123000" "377233" "199283" "260869" "430873"
209
+ "612958" "149529" "977780" "370697" "826403" "61006" "464623" "956248" "665395"
210
+ "629503" "376698" "891458" "743760" "78866" "543073" "719415" "28507" "521192"
211
+ "706681" "731643" "913918" "508266" "88980" "167819" "891569" "318108" "632362"
212
+ "201735" "695424" "880752" "765530" "771144" "561870" "311795" "231513" "317246"
213
+ "846380" "132453" "564900" "461651" "917281" "163346" "793676" "88116" "981004"
214
+ "375849" "78002" "907014" "970486" "22286" "957191" "187867" "850220" "591767"
215
+ "134351" "911062" "54627" "93596" "776304" "776765" "539553" "193826" "359592"
216
+ "785322" "921109" "741965" "627600" "338720" "855517" "86241" "961175" "18237"
217
+ "82726" "736102" "854389" "309988" "400899" "138634" "462084" "321932" "904130"
218
+ "484499" "447430" "888222" "267465" "497203" "165038" "135024" "994782" "868720"
219
+ "90563" "707232" "420861" "572497" "404086" "942012" "359142" "424944" "749342"
220
+ "405944" "932438" "57421" "1305" "729552" "263400" "651922" "294097" "993521"
221
+ "263775" "8221" "193880" "432929" "812550" "458637" "836186" "435509" "166568"
222
+ "45424" "854179" "45059" "834958" "671276" "991042" "327711" "564956" "445253"
223
+ "516025" "878649" "494492" "214104" "239669" "536347" "834771" "279680" "639725"
224
+ "404544" "570636" "657509" "699763" "296883" "100103" "907577" "663391" "428452"
225
+ "694338" "922759" "71041" "985029" "355437" "892103" "806393" "831646" "597304"
226
+ "824636" "116999" "524421" "842200" "959812" "818450" "162541" "779846" "412451"
227
+ "752837" "65805" "269713" "680299" "135975" "361635" "148663" "49393" "586298"
228
+ "121080" "941478" "325948" "276568" "985304" "220210" "443002" "752592" "695348"
229
+ "832898" "958642" "987458" "615837" "684254" "962518" "56465" "970921" "861063"
230
+ "299862" "363704" "590891" "180167" "755905" "225058" "319265" "578165" "492509"
231
+ "151812" "347595" "536595" "802115" "581882" "741440" "788630" "391383" "200340"
232
+ "770182" "578419" "532476" "52060" "449750" "46849" "23722" "567305" "45369" "183051"
233
+ "658297" "288096" "822460" "421785" "779849" "265382" "985124" "273796" "935430"
234
+ "323648" "90497" "523445" "414032" "219357" "241796" "181029" "265848" "44975"
235
+ "544700" "960117" "979088" "821091" "745289" "870898" "772669" "156821" "339467"
236
+ "462864" "663633" "704102" "446816" "557140" "50699" "767901" "52426" "203649"
237
+ "70161"'
238
+ dataset_name: 1key-list-32B-size
239
+ dataset_description: 1 key. containing redis list data structures.
240
+ tested-groups:
241
+ - list
242
+ tested-commands:
243
+ - lrange
244
+ redis-topologies:
245
+ - oss-standalone
246
+ build-variants:
247
+ - gcc:15.2.0-amd64-debian-bookworm-default
248
+ - gcc:15.2.0-arm64-debian-bookworm-default
249
+ - dockerhub
250
+ clientconfig:
251
+ run_image: redislabs/memtier_benchmark:edge
252
+ tool: memtier_benchmark
253
+ arguments: --command="LRANGE int:2000 0 -1" --hide-histogram --test-time 120
254
+ resources:
255
+ requests:
256
+ cpus: '4'
257
+ memory: 2g
258
+ priority: 34
@@ -0,0 +1,282 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1key-load-hash-1K-fields-with-5B-values
3
+ description: ''
4
+ dbconfig:
5
+ configuration-parameters:
6
+ save: '""'
7
+ check:
8
+ keyspacelen: 0
9
+ resources:
10
+ requests:
11
+ memory: 6g
12
+ tested-groups:
13
+ - hash
14
+ tested-commands:
15
+ - hset
16
+ redis-topologies:
17
+ - oss-standalone
18
+ build-variants:
19
+ - gcc:15.2.0-amd64-debian-bookworm-default
20
+ - gcc:15.2.0-arm64-debian-bookworm-default
21
+ - dockerhub
22
+ clientconfig:
23
+ run_image: redislabs/memtier_benchmark:edge
24
+ tool: memtier_benchmark
25
+ arguments: --test-time 120 --distinct-client-seed "--data-size" "10" --command 'HSET
26
+ "hash:1000" "tocawprsxz" "value" "csqcfxyzsy" "value" "ipubipttcb" "value" "jqurtadjro"
27
+ "value" "zdulfflfqx" "value" "bbfvuialin" "value" "ifpfyncdfe" "value" "kjeevccyof"
28
+ "value" "stttkrbfqs" "value" "qatkvfuttq" "value" "ltvfnuuwil" "value" "znartcywze"
29
+ "value" "bzursuzuei" "value" "jlghqxtvok" "value" "osncqcuest" "value" "uxvibjduto"
30
+ "value" "giubyhvaav" "value" "joijmgposs" "value" "lqxpnplleo" "value" "bnatichltp"
31
+ "value" "nnfxoqebys" "value" "lyhqvxolfw" "value" "caaqjozcqh" "value" "nlqtadqinl"
32
+ "value" "hfjxrrsszf" "value" "fussukqrph" "value" "cbjovvgqqy" "value" "wcpbfslakk"
33
+ "value" "slskrnekbc" "value" "nvonwipkta" "value" "jhdcicttmm" "value" "rpyroriegs"
34
+ "value" "lnuuootxmp" "value" "ufdxqlonpg" "value" "qgasrnjrld" "value" "jhocasnttw"
35
+ "value" "smwbxeqbed" "value" "kapxglqccs" "value" "hhwvslfxmf" "value" "rbdabbmnrf"
36
+ "value" "ltgidziwzm" "value" "qpffifpdiz" "value" "sadqcfniau" "value" "bqoabrqwwj"
37
+ "value" "wghyakzbit" "value" "bnxtlmiwup" "value" "akzsgaeqon" "value" "zwlhpcahwu"
38
+ "value" "kfselnpkim" "value" "dxtzxeguoi" "value" "roczxpuisd" "value" "myzjxvtvjh"
39
+ "value" "alfftdxaxc" "value" "vyiqkfoics" "value" "dygkzcpakt" "value" "ukprrucywq"
40
+ "value" "afzlyodwiz" "value" "vdaebbupfe" "value" "wemmvswznk" "value" "xzbqjpzqlm"
41
+ "value" "lqqivzlppd" "value" "rrzcqyzdzf" "value" "ncckxlmsvg" "value" "cpjveufsvk"
42
+ "value" "babfjxxabw" "value" "btcvhacldb" "value" "mqqrgbacfa" "value" "eqaxrccwjq"
43
+ "value" "erahoeivfw" "value" "omeatkwwtc" "value" "mjwrbndexu" "value" "gktcjcfxbb"
44
+ "value" "tfonhwnuxj" "value" "pheajlhymx" "value" "vefgwelnfo" "value" "gayysuldha"
45
+ "value" "tqpqihwjtl" "value" "eirhwkdgfq" "value" "rnfodijavx" "value" "erqgyscser"
46
+ "value" "nnnxouavyp" "value" "yhejmjwwni" "value" "mwmcwqzbld" "value" "ofcurtthcs"
47
+ "value" "idmjjbjvni" "value" "ovqohpxjft" "value" "ocoflktdhp" "value" "kgopxvsdah"
48
+ "value" "pyjpxqnavq" "value" "nubsytpfao" "value" "ddpgrvwowd" "value" "glynpmsjcf"
49
+ "value" "whsxmqffqg" "value" "sstqpivwip" "value" "cqfnhujrbj" "value" "gsvkmnluiz"
50
+ "value" "zdmgjjyukl" "value" "gcfcbjybkx" "value" "qmhyoyctod" "value" "kdodndexvr"
51
+ "value" "tkgihmsrha" "value" "kmifjielrw" "value" "gefoharnza" "value" "tcpwkimype"
52
+ "value" "nxllkzroin" "value" "bpvbnmpekh" "value" "ljinllovsw" "value" "mugdxqnjxj"
53
+ "value" "tqqmmvwact" "value" "uidvmrqyjd" "value" "dthtfrqkce" "value" "efhynoxlul"
54
+ "value" "iosqxoobrk" "value" "sujbwndgwl" "value" "btxehrokkw" "value" "pmaagvqldo"
55
+ "value" "evuxmkrrfl" "value" "dclualrzqb" "value" "jfqxkxgqhj" "value" "fvemodlpgz"
56
+ "value" "lawrpikwsk" "value" "socoxaegfa" "value" "snomfrutha" "value" "yxsnreuepl"
57
+ "value" "vjihaakiof" "value" "nnhrgirrtw" "value" "jccorylnjg" "value" "gehuriygwq"
58
+ "value" "icqjxcermo" "value" "ocgjeuljxf" "value" "qslrwqmixc" "value" "rhzpguhsws"
59
+ "value" "zxlbhyeckf" "value" "iziwqojsoq" "value" "qlorevyltp" "value" "gbjzsedhag"
60
+ "value" "mkxysrkpug" "value" "bhrvnadcdk" "value" "qxxinxaqxn" "value" "ctnaggdbru"
61
+ "value" "fsthobmdxk" "value" "cvnnitrrow" "value" "vlhtdpqavh" "value" "vhjaphfdpj"
62
+ "value" "yhdgqenmwv" "value" "ysntbzffxq" "value" "emfjcnujqn" "value" "qnqzibcmip"
63
+ "value" "ngcxqjjpdm" "value" "gkneclxnnt" "value" "rhkpfsuhoq" "value" "dgodkfjzos"
64
+ "value" "isqymcuffe" "value" "ripecixnpr" "value" "dxpepbctea" "value" "gbeizdzdyb"
65
+ "value" "aqlapmghln" "value" "yhlalzusch" "value" "xglrugpjkt" "value" "ngwifjdpha"
66
+ "value" "jvekvvldai" "value" "hmdzsuuyrn" "value" "ncabqesziv" "value" "whdftyqojv"
67
+ "value" "rhzqdtxucc" "value" "ftyxhyfokj" "value" "vqtixjkcbb" "value" "krfosgrmjb"
68
+ "value" "ahcaaodvgi" "value" "ooeswhfdnj" "value" "jhctncrzlw" "value" "haxesjafmh"
69
+ "value" "vxrtzngznb" "value" "fidsuuizcf" "value" "mamtueyrqn" "value" "quemrlmwod"
70
+ "value" "pkgpjwyfbh" "value" "ckibsdtfff" "value" "tjnjhejnju" "value" "puvgjfjyaf"
71
+ "value" "cvmicoarvv" "value" "mxpzuzrzuo" "value" "rrrfhnclbv" "value" "xeurpmfdmo"
72
+ "value" "yqvkykgjbe" "value" "behdxlfdho" "value" "dyzedskzkq" "value" "rfhlttsuqy"
73
+ "value" "pkehotsmka" "value" "alokvrpbih" "value" "mobwpcyxuk" "value" "umwunfzsvo"
74
+ "value" "naggqdxcjm" "value" "rakustfykw" "value" "dtkfydidli" "value" "kohpozxkhl"
75
+ "value" "usjmfkopln" "value" "axhoxkubdv" "value" "asretszbav" "value" "tmkoxwdgpx"
76
+ "value" "wjhaavxfge" "value" "pcuaesomdc" "value" "vjhpmffzxc" "value" "qwxzqlqter"
77
+ "value" "jjumoixniz" "value" "ruxsmttpak" "value" "pjdundsxrd" "value" "kdklhpxntt"
78
+ "value" "muhewfzihs" "value" "dplonqlliz" "value" "wjibkklezg" "value" "dfemamyevk"
79
+ "value" "nryvfijxhj" "value" "bqqohkuylc" "value" "wiqhmhkiel" "value" "lftmqoxhfc"
80
+ "value" "sjbaedopjb" "value" "dlomhvkoxg" "value" "jhkdwtqvwl" "value" "vqashxkrik"
81
+ "value" "mupcilqfjg" "value" "suahxaebee" "value" "rqkcyxiwhz" "value" "jqgtbgbybq"
82
+ "value" "ygbfgfefac" "value" "kjblkrvknt" "value" "yajpmxmuwz" "value" "wwowdvybjj"
83
+ "value" "bdtbaxnuko" "value" "adfhfatarh" "value" "vfcpevtekf" "value" "fiugzrozky"
84
+ "value" "spogjykkfs" "value" "tdggmsxysk" "value" "aoqlctikzg" "value" "nwywtydqew"
85
+ "value" "qjrhtqgwjc" "value" "dhzgpwewsx" "value" "outdlyeqvq" "value" "trwzipsers"
86
+ "value" "qtpcwuafar" "value" "scgjdkyetq" "value" "aqyfvxyjqr" "value" "xkvgnzjgrm"
87
+ "value" "hhbceuegvh" "value" "paitaeqrpb" "value" "yfdsmhtria" "value" "bxwvqvndcc"
88
+ "value" "dpyjoihqrs" "value" "tnratexlre" "value" "hplvvuoscb" "value" "muocqqypmt"
89
+ "value" "pxzkuasjek" "value" "flrsaczxzc" "value" "pubqtzzzko" "value" "vpqlxtfkjz"
90
+ "value" "fiafoggekm" "value" "qtewhixedb" "value" "iijjcabgak" "value" "tqjpijliii"
91
+ "value" "uttazeawix" "value" "hxbmykkugi" "value" "bekchebgys" "value" "ffrviosqzo"
92
+ "value" "rjrptuhkav" "value" "sldzewoxas" "value" "uesalivsis" "value" "maxylirjgh"
93
+ "value" "vpzsmbjkvy" "value" "eiziligjfr" "value" "tqblforkpa" "value" "nszbrpweoz"
94
+ "value" "rzanpefsfy" "value" "cejkfhuykf" "value" "abinkgshoi" "value" "gqybtjuhvq"
95
+ "value" "oqdlpaubsc" "value" "nrbfkysxaf" "value" "mhxojehvxx" "value" "vuqlqdpfdn"
96
+ "value" "orqqevpmca" "value" "xigznrdgqy" "value" "jzceexkqam" "value" "szupcnvvij"
97
+ "value" "btgeubdzbb" "value" "nojnedgabk" "value" "sdnkjddyut" "value" "lbjarnpxhh"
98
+ "value" "wevfinjbqk" "value" "dvgqwzignk" "value" "ejzwnidqwr" "value" "nlxwjmzwln"
99
+ "value" "brrlblrxwa" "value" "hyikggurti" "value" "wybmlpqblt" "value" "hertbwuzyw"
100
+ "value" "rwhzzytdsq" "value" "symbgeyple" "value" "zbfeyptemz" "value" "pghbwbtfmk"
101
+ "value" "mxydilgynv" "value" "bhwytqsafu" "value" "ecsburyjhh" "value" "cvohdragtx"
102
+ "value" "lscjhgztom" "value" "giswndixdf" "value" "etsngvbrff" "value" "lgqazzajpx"
103
+ "value" "pypepewjvq" "value" "nswjopvtqv" "value" "tuajnnqtcq" "value" "bvvoibkfrt"
104
+ "value" "kjqeujfkoh" "value" "diwmfuckel" "value" "bwizktcwmb" "value" "ughnpilqqm"
105
+ "value" "ihealvwnxb" "value" "thqttakyzy" "value" "auwfujaoya" "value" "rofnkytnhm"
106
+ "value" "ilkuddrdvh" "value" "hmwfncgzxg" "value" "pzrchtwaaw" "value" "ffksbrtbfq"
107
+ "value" "ethxaycsil" "value" "uwiqrvcqvu" "value" "fgcehqgsso" "value" "yoblelzlkd"
108
+ "value" "gjiwldcfqh" "value" "sbrjnwxdip" "value" "nenhiiibwx" "value" "ebhhhgabjd"
109
+ "value" "xpkwqbfban" "value" "pupmdjgyed" "value" "aejnvyfdst" "value" "krxneqolle"
110
+ "value" "nouncgkoik" "value" "kamgfgbxel" "value" "fffylsswky" "value" "agswwrfabr"
111
+ "value" "pkvcbelpos" "value" "mxapzqqqsw" "value" "ywmqoaztmy" "value" "sfuvzzxbxq"
112
+ "value" "kdcvbkrbsj" "value" "twpiiaedpc" "value" "egmgddriry" "value" "nmfihtnkel"
113
+ "value" "kqzjnkdlxd" "value" "eovsizpcjp" "value" "bsavjyaksg" "value" "xlmvatfsly"
114
+ "value" "dlhjfafskj" "value" "wmvhvwnowp" "value" "vjjozwrovk" "value" "gbazuqnmit"
115
+ "value" "ubwlcefgqb" "value" "jttqzbazgz" "value" "dozecfsvue" "value" "pgdhjrxhga"
116
+ "value" "gzekysdunp" "value" "ygoiannoht" "value" "hklchdenoe" "value" "sotbjzlsvz"
117
+ "value" "qjwrnhooax" "value" "cdghgcsoth" "value" "mjlpvuoghe" "value" "qclkaeciey"
118
+ "value" "oownjpxrov" "value" "nvqfyljbef" "value" "tsnawydcru" "value" "wrrgxxkxkc"
119
+ "value" "ylulwsnjay" "value" "lxsinouutc" "value" "ozpyyaznsh" "value" "cmhkstsjok"
120
+ "value" "ybckvbeoib" "value" "fsoardckcw" "value" "ltkauvxggz" "value" "sqwhsgboef"
121
+ "value" "wgtjxahmef" "value" "spoqshzjoi" "value" "pfvfxrrfhl" "value" "nahweurftw"
122
+ "value" "fojjpqmbck" "value" "zexblqeora" "value" "qsoiwsugdv" "value" "ksppwhhqzj"
123
+ "value" "otadcihtmd" "value" "imnjbkmsls" "value" "zzenkvuesw" "value" "kbfqdppnfa"
124
+ "value" "igehetokzq" "value" "koujdppfua" "value" "wqsqzzbqhm" "value" "tglieutcis"
125
+ "value" "owovlhorvw" "value" "nraylduhut" "value" "nwnyjkugcf" "value" "kpfqxroqbs"
126
+ "value" "xwxwosqkhm" "value" "ollacusjzj" "value" "wcouaiatsu" "value" "nvkfnfzoki"
127
+ "value" "fgjnsosfrp" "value" "pltsnzqvpi" "value" "rhnkzlsjtk" "value" "ysnndkycix"
128
+ "value" "bpnfopinub" "value" "blujwnyluy" "value" "wgtmckqknh" "value" "zorzyqtjtr"
129
+ "value" "hvtlkrungk" "value" "rgtondctpo" "value" "mjgvtydjtm" "value" "kcbotffyca"
130
+ "value" "gybxnvwchp" "value" "gazojexans" "value" "hmcpcrjumm" "value" "zejhycldyy"
131
+ "value" "iiissmznfe" "value" "qvpuudyuks" "value" "gviypfayfm" "value" "plqbwsiuzw"
132
+ "value" "nunchscyqc" "value" "qocjpufxio" "value" "iqbyikqjmx" "value" "omwbgglqsp"
133
+ "value" "nywteueaig" "value" "ntmgbzaivy" "value" "ijdgnlzprg" "value" "rnlaakgsrf"
134
+ "value" "fpdflprzvn" "value" "azkdbpnshy" "value" "mvfnirshbd" "value" "sotsxznskx"
135
+ "value" "uzktwqcdeb" "value" "myrrmvflyw" "value" "jgaieawkcu" "value" "utymwhxigo"
136
+ "value" "vtaiyncmyg" "value" "gpodilvrnm" "value" "xgfzndhodu" "value" "saqilljaid"
137
+ "value" "jxiewthqls" "value" "nbwksmwxpx" "value" "rwfykeeqgx" "value" "tlnkrncpwi"
138
+ "value" "ogyvxbgcwi" "value" "ffcqkkzllx" "value" "rtnhivnxtb" "value" "vzcclamtun"
139
+ "value" "jjlefkekuw" "value" "xjksnqifds" "value" "ctusqixohm" "value" "osaekeukqx"
140
+ "value" "irlduoinie" "value" "nifzrybfuh" "value" "ctqxoyxbwc" "value" "vsvhjrymqc"
141
+ "value" "bzwxqcpftf" "value" "ltghdkluqq" "value" "vklwhyzqhk" "value" "ghwcrdlbjj"
142
+ "value" "lzzptujbjp" "value" "qlvgfplbod" "value" "ghepftfjgk" "value" "aiqqyusnuv"
143
+ "value" "rspghuhpbp" "value" "lfkqrtxocm" "value" "iibgagtkpg" "value" "ywiurvfbpg"
144
+ "value" "tdceweesxh" "value" "pvwvdaorrl" "value" "ejlunxlwxn" "value" "ymqxhmnidz"
145
+ "value" "lydebbpmfb" "value" "ztjuqomjck" "value" "eyrbqexkff" "value" "oqmuhlruqy"
146
+ "value" "gnrmnwaxls" "value" "mumhqarhgg" "value" "skbzfbeziu" "value" "hnnfmyurhx"
147
+ "value" "yrsizkbbwz" "value" "azpwrzovza" "value" "txhllnvudv" "value" "aslibwggrp"
148
+ "value" "ubghghklvj" "value" "jqqogagqni" "value" "emfqsjraia" "value" "ctgwmawlgl"
149
+ "value" "mivctgaajt" "value" "knycrcrsbm" "value" "ubtiscdgrn" "value" "ulepgommyy"
150
+ "value" "qbhdjhoohc" "value" "cctlfgicpv" "value" "phfuspevwk" "value" "oeawjlqnyg"
151
+ "value" "jpphbjtbrh" "value" "ofykgotycd" "value" "csjfbpjyzq" "value" "thmmmlqluk"
152
+ "value" "buzhjxsbkm" "value" "pisgqibyae" "value" "skkawcmqqt" "value" "mmqblvrscy"
153
+ "value" "dpkiubfzbx" "value" "yivxcecwlp" "value" "kbnjiilaqd" "value" "rwrxxrnwtq"
154
+ "value" "veegnotgmj" "value" "pbfijwccjp" "value" "expefhkisx" "value" "ynnhyctikq"
155
+ "value" "bhfmhanvxe" "value" "otclvmbilg" "value" "hskkmrluuf" "value" "ftnbjymlll"
156
+ "value" "nbkaxrojqq" "value" "qydrgilxxt" "value" "dxufcyurjx" "value" "fgygwdazbm"
157
+ "value" "tivnqailcl" "value" "jwvqixjhho" "value" "oglqutqfcx" "value" "wvrlxfoxff"
158
+ "value" "ropuqidkxv" "value" "qcsxjrjcfc" "value" "twuvkpjzzw" "value" "fqtktfghcv"
159
+ "value" "suhwnartid" "value" "wvsnfinuil" "value" "rngtndwjyg" "value" "tsmzfswaxo"
160
+ "value" "uvlswctlhx" "value" "llamjvxyqo" "value" "wovoupawzt" "value" "caxgjftjyj"
161
+ "value" "gwzqcetcji" "value" "yzrdbalexf" "value" "fnpdsuozxt" "value" "dbtbtvkqss"
162
+ "value" "pwgjoppmgc" "value" "wxjdgbugeu" "value" "qchpfcigwa" "value" "lxzdcbveuy"
163
+ "value" "bwjyghaztz" "value" "uedehyieof" "value" "pfaytznuaa" "value" "lspvrnxnjo"
164
+ "value" "zkbqvttlzy" "value" "fkdmuxraqf" "value" "nbizrabfuo" "value" "fgzwwaedjy"
165
+ "value" "gkmwutvars" "value" "bwsdzrxzse" "value" "txgjxzovte" "value" "cbtpbbfrdd"
166
+ "value" "vqgztpmzhz" "value" "rdipvyeqoi" "value" "bovkdabcdo" "value" "fhobhpwwkp"
167
+ "value" "mkbkflixkr" "value" "mjifqzmtsd" "value" "pkcqdokojd" "value" "dtgjnddwch"
168
+ "value" "uboipezuni" "value" "dfdodbelzn" "value" "fzsoiryhfn" "value" "krtsiucvvu"
169
+ "value" "aieekmivcb" "value" "aeafusfzdn" "value" "ehnrizfmfo" "value" "dcjlwhfstw"
170
+ "value" "wksgvbkbyw" "value" "hvfprkjlbc" "value" "jlgepeyhpc" "value" "ljklggibcy"
171
+ "value" "mhrvuemywb" "value" "wdqygrxkya" "value" "ystnkbogee" "value" "flvftlpbjq"
172
+ "value" "vgfgbsbnwy" "value" "rsivptwulz" "value" "bzjzucrypq" "value" "bweysooxiv"
173
+ "value" "mmcunsiwad" "value" "mszjkgsrio" "value" "bvurseeqmh" "value" "wtcpliaxmk"
174
+ "value" "ndwiompimr" "value" "mdcwoblmkl" "value" "dflxukffgl" "value" "mcojdazpfq"
175
+ "value" "tctgzmjads" "value" "dewdgfrhos" "value" "iwqanwtvcd" "value" "nfucelqjfe"
176
+ "value" "wgtrwefdsw" "value" "skstqdgbos" "value" "rwllkdzxrj" "value" "qwozutlufu"
177
+ "value" "fmpdixcckx" "value" "jybzltmwrs" "value" "ossjrvqmaa" "value" "adlxahxsbq"
178
+ "value" "mbewprqunw" "value" "xbvbujurqw" "value" "rnvhfxbuoi" "value" "pyrpwxalpc"
179
+ "value" "adlryhdbpr" "value" "gritvkzfgw" "value" "aufhfrhccf" "value" "umoicweaab"
180
+ "value" "kgirldeylz" "value" "nknlysgviv" "value" "plbxaamppj" "value" "ikpikupjoi"
181
+ "value" "eioxaswdee" "value" "imexfccbxk" "value" "ouroipthpq" "value" "jbzyfznpdn"
182
+ "value" "asidljmwgb" "value" "jeazfmhrcb" "value" "dablvesuho" "value" "zuoqjiciij"
183
+ "value" "qmxxfyuodo" "value" "vkqalcokst" "value" "jhibapuhga" "value" "cmqraybrlw"
184
+ "value" "beqsnrixhl" "value" "rmqxtqcxua" "value" "ndltyojjxj" "value" "hyanpicfan"
185
+ "value" "yzutuazhmh" "value" "tumnalubch" "value" "eksvvoxziw" "value" "weqhfkosif"
186
+ "value" "wwfbpjatrp" "value" "lrhrkuyzry" "value" "uvbtcgtopw" "value" "fmyleefltp"
187
+ "value" "kkrxiaiife" "value" "gbkqhfumyu" "value" "tdmjyuitvv" "value" "jvtalmlkng"
188
+ "value" "rdsfcdvkqz" "value" "xqvjnlpssl" "value" "fuftndsnim" "value" "keklddczkd"
189
+ "value" "wrqnytptzm" "value" "rwzijctxzs" "value" "btakuczlec" "value" "fuipidfbjt"
190
+ "value" "kjiqagynco" "value" "ahjawbsqcw" "value" "iehxaaneev" "value" "ezbiwqnabg"
191
+ "value" "pnnzqcutoq" "value" "wlogkzxkpo" "value" "xzswnnldvs" "value" "qqfnugftmr"
192
+ "value" "zuccleayil" "value" "ckqebhazel" "value" "brwlqbfoat" "value" "anmcogawkg"
193
+ "value" "roqzbzpbbt" "value" "dxnprfawun" "value" "fffreqppjj" "value" "gfdzgxfdcg"
194
+ "value" "sshbuxfljd" "value" "shckmujxzo" "value" "rqurawzebz" "value" "vpehhmoxva"
195
+ "value" "vldwfdnicm" "value" "tzhjrlfvfp" "value" "ymwwctfodg" "value" "qsxfnsicrx"
196
+ "value" "gfhrrjczsp" "value" "gtqrsktbaa" "value" "dniplpxfof" "value" "htawohddyn"
197
+ "value" "dbcxnsiacw" "value" "dhfundvlpn" "value" "uewpgskfpu" "value" "cuuytorpnp"
198
+ "value" "vlcnbfqvox" "value" "jbqibabrmv" "value" "xhspgwheck" "value" "fsuovvpgng"
199
+ "value" "gcjruttnno" "value" "wxswusqpeo" "value" "qhhhipzncq" "value" "mcbuftndrr"
200
+ "value" "owjfgjqqjc" "value" "vvmkjgajwa" "value" "wvlvshnhmx" "value" "ekponflaeq"
201
+ "value" "kuiumwomxi" "value" "aoydkdfrpe" "value" "cglxptkcsz" "value" "uqbpcvkipa"
202
+ "value" "ubzgvzputq" "value" "wmyphdckda" "value" "ukdnaklmcp" "value" "ramoirrdyd"
203
+ "value" "vwayaqmtid" "value" "ltomuspfzc" "value" "wzxdkpehwf" "value" "yzcspfvcot"
204
+ "value" "cgpvvnbvlk" "value" "farwqgfyjf" "value" "lbxvlwzony" "value" "ocesqguvym"
205
+ "value" "yzviqaobku" "value" "cnngbbpowp" "value" "ucxeoqcssr" "value" "zcffhzusrl"
206
+ "value" "yzmodbpsnb" "value" "aryiyaltqw" "value" "xkaailrpns" "value" "lpahctqgna"
207
+ "value" "cnbqnvxmjp" "value" "nugjvhftma" "value" "xsgcuvxzor" "value" "xwtwtwmbgu"
208
+ "value" "emdwpvauyc" "value" "ahfktrqmgh" "value" "jznackjcrd" "value" "etcsjxoqab"
209
+ "value" "kpzmuwqbnt" "value" "dspznsgszk" "value" "rcwbzvwbva" "value" "mlznoaajqq"
210
+ "value" "iwuuxdactm" "value" "zujobawsct" "value" "snepgcispg" "value" "cgmivhyskk"
211
+ "value" "snunzlgfkd" "value" "ppdxnadmje" "value" "wtzqqecgfy" "value" "ncremxgfdb"
212
+ "value" "cblsafugqk" "value" "hjekcxfyds" "value" "faxedqgskm" "value" "jjczogqdwz"
213
+ "value" "jfbgmhtjke" "value" "nehqnkqnld" "value" "lcdchjadll" "value" "llimzyabsp"
214
+ "value" "iwapedwyle" "value" "iobkwbwceu" "value" "twmbtaxdro" "value" "nmtmjmhmdl"
215
+ "value" "ewoqykjbkc" "value" "tmyuncyoyd" "value" "dcepfcdddn" "value" "dnvwyhyhsn"
216
+ "value" "nrencopzqn" "value" "yjyffpgoop" "value" "uvqtefqdhk" "value" "yjhypaonqq"
217
+ "value" "uqvzpcvugl" "value" "cakvxrdpmj" "value" "tvzacklhdz" "value" "higdkhodzy"
218
+ "value" "ormdblyhhn" "value" "wbouqpojzl" "value" "eyhgspybnr" "value" "lywsezpzgf"
219
+ "value" "usykkwszvh" "value" "bcwncpnibg" "value" "jgcqryhsvk" "value" "yfvwesgulw"
220
+ "value" "geizujxrkg" "value" "zknlteeaxq" "value" "nqwjivcosg" "value" "qmnxipsiga"
221
+ "value" "pthacnunjj" "value" "afamsavgsi" "value" "bzfzxzecrs" "value" "sxcihybfci"
222
+ "value" "padscbypdo" "value" "gaotvjctjh" "value" "beicnwdryg" "value" "xsueeljljp"
223
+ "value" "mkrrypcfzy" "value" "ekjgqnjxyl" "value" "iyeiercbxr" "value" "rkwlgzhvvy"
224
+ "value" "hmnaoeeasz" "value" "aquymkrswt" "value" "ulnnuwyptq" "value" "xftfzsoiwc"
225
+ "value" "urkkyscfti" "value" "wabroeeoop" "value" "qpzkuxsipr" "value" "dxdngrmypg"
226
+ "value" "icatrrbcjs" "value" "fhuptkhkzm" "value" "apyzwvajot" "value" "vealtjlqyc"
227
+ "value" "khkkfmzkow" "value" "trzqdcaqdw" "value" "itmekixthv" "value" "pudgkcbwdx"
228
+ "value" "zuibhuihtz" "value" "kzuywkxlku" "value" "ogtqmpnzie" "value" "jetamrlglx"
229
+ "value" "fjdjumschq" "value" "kprzbyngsw" "value" "xeyxlxiqch" "value" "dtuhvpszzt"
230
+ "value" "fpmbbgiaao" "value" "hjlhurakwh" "value" "mshexjmkmn" "value" "cynhehkcxs"
231
+ "value" "cvbbbdzmie" "value" "cvnlzjdfgf" "value" "ifhkjgmxrd" "value" "audguegpmo"
232
+ "value" "jzstgleeby" "value" "eafrzhdhhq" "value" "fmmammvdyj" "value" "uncqdpbhwb"
233
+ "value" "fzatoyblsr" "value" "xtwlklqdna" "value" "ydqppngxvh" "value" "mkngszsxeu"
234
+ "value" "vyewicgjio" "value" "tstbluhyhj" "value" "qzxxwlfeki" "value" "ocmtsfpsgh"
235
+ "value" "xmknbbmdbf" "value" "pdjmftsmob" "value" "ygrpkpstxq" "value" "hrhiqcarju"
236
+ "value" "aadzbodres" "value" "curhymvwsx" "value" "tbqidtevrl" "value" "avchkjnlwm"
237
+ "value" "tyephutkmb" "value" "lxoaezrdxs" "value" "ctkwlhmgfz" "value" "xkiuuciwrn"
238
+ "value" "irrovfyshb" "value" "hwuofuftlr" "value" "mhbfsuaovv" "value" "wzuhzzdezi"
239
+ "value" "jlpobgvouj" "value" "qbpmtomqpu" "value" "shlwywnxpk" "value" "srkvjhetmj"
240
+ "value" "hvxefqtmqu" "value" "fazsvkljef" "value" "bstezdkmig" "value" "asbtvfzien"
241
+ "value" "vewfxcxkpf" "value" "tqkprkoixe" "value" "rcaatkjyur" "value" "euleuicawb"
242
+ "value" "ifiizdeong" "value" "cjcrpmggtu" "value" "kxggjpatkd" "value" "klwqsggtob"
243
+ "value" "mnsaklzgob" "value" "xfxlervrgn" "value" "eraxdyjftw" "value" "xrvonyieqa"
244
+ "value" "fswhywqxhy" "value" "iqzxblqkeo" "value" "rxvhmzvbcv" "value" "wvdmobfisx"
245
+ "value" "ujybghjfnf" "value" "yufagalzhk" "value" "qxbqbfcgjp" "value" "vorgqhmaoq"
246
+ "value" "zewylkylsy" "value" "vvmaucizkv" "value" "bgcoyoduda" "value" "vnsufnurol"
247
+ "value" "rtskokvklv" "value" "svvdufedug" "value" "qgdgujdvtg" "value" "rjrtvpntke"
248
+ "value" "shgetgsird" "value" "ywgeotcect" "value" "zsikdzycyt" "value" "gcsswbksnc"
249
+ "value" "qgobfhgspy" "value" "pbxrbaxnor" "value" "viwarrumob" "value" "eaetplspga"
250
+ "value" "jqmscuprwq" "value" "nkyuframnm" "value" "gygftrsdbm" "value" "qzlfnntjar"
251
+ "value" "fzzcioobeb" "value" "ydigxptqbl" "value" "bgtxhxkhvv" "value" "hggqmlgwha"
252
+ "value" "ywlqbjqeug" "value" "qwowxqzrkz" "value" "zybosgbtxt" "value" "cflarkquuv"
253
+ "value" "klaeknlbrm" "value" "ccnbldglgl" "value" "dpauqcpgyi" "value" "ylxiwiesps"
254
+ "value" "xyxmlrdbui" "value" "arqfxfqkzh" "value" "byrkeibrfb" "value" "laepwenqmc"
255
+ "value" "kluswgtjsf" "value" "mgldvzleyy" "value" "yqmzmmzwpd" "value" "tvlckdoyfe"
256
+ "value" "dmxcbvzrxg" "value" "qquwyuyvvw" "value" "pmytvtksfi" "value" "umttshfkpk"
257
+ "value" "rmdayyptch" "value" "glwrmjpotx" "value" "bgcnzgcmza" "value" "ivinvxopgz"
258
+ "value" "dmbarohbfj" "value" "rncdgqxqfq" "value" "zmmwzkjrjl" "value" "gdlztbhpeq"
259
+ "value" "zrwgpknaop" "value" "powzkcrtvv" "value" "cszvzbrmoy" "value" "dtjljhzqcm"
260
+ "value" "anznywecwk" "value" "amuwlfaxwv" "value" "ajdkqflpen" "value" "evjrybtwww"
261
+ "value" "oxsdmrdbit" "value" "yafipxfsip" "value" "xekxarmwcq" "value" "dgcesswkvc"
262
+ "value" "gdqgmwxkmt" "value" "spdyueanru" "value" "yrvmdhnnfc" "value" "aexxjlgwuo"
263
+ "value" "xpcpytommm" "value" "gjutzwoxlf" "value" "stnfirydgi" "value" "snpuvnebpy"
264
+ "value" "rfxibyjmpg" "value" "ortxlvmdoc" "value" "gdozstnglr" "value" "eqiukbyscu"
265
+ "value" "qzcrpbvatq" "value" "dwzqowbrsd" "value" "iesbitdnjd" "value" "inboyxgoqa"
266
+ "value" "lfojnetxdc" "value" "njmufqrykx" "value" "ybcdthmgws" "value" "igwekdegcw"
267
+ "value" "ajkgxmtamu" "value" "qkyfpamste" "value" "nwybjbhgep" "value" "arqqmfmmbz"
268
+ "value" "rqiyxwpuyv" "value" "nsdvirehqh" "value" "qckueiqiwh" "value" "tjnbsybxws"
269
+ "value" "jphvxuqipp" "value" "ghtoyhrfxh" "value" "erglflfnql" "value" "kngwkkzwts"
270
+ "value" "nmguhcygct" "value" "jigyicdeft" "value" "gamcdtywne" "value" "nunpqugdit"
271
+ "value" "ghqwxaqlef" "value" "nqxdrqigvf" "value" "xepfvvcovk" "value" "ezgxjiwwig"
272
+ "value" "izizuzzjuv" "value" "mallnshtok" "value" "tctrsxgnrc" "value" "exhjfssojj"
273
+ "value" "yilvzcevlj" "value" "nepxmyiuhr" "value" "dqqfcdugde" "value" "iamjlqlznh"
274
+ "value" "mvmsikqfxu" "value" "kmqlwfbsex" "value" "pribqncfuf" "value" "zavrjnezrf"
275
+ "value" "kmcwshsbye" "value" "uzaejrbwue" "value" "olezxlliej" "value" "hjjxyybxiv"
276
+ "value"' --command-key-pattern="R" --key-minimum=1 --key-maximum 100000 -c 50
277
+ -t 4 --hide-histogram
278
+ resources:
279
+ requests:
280
+ cpus: '4'
281
+ memory: 2g
282
+ priority: 5