redis-benchmarks-specification 0.1.218__py3-none-any.whl → 0.1.220__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.
Potentially problematic release.
This version of redis-benchmarks-specification might be problematic. Click here for more details.
- redis_benchmarks_specification/__compare__/args.py +6 -0
- redis_benchmarks_specification/__compare__/compare.py +69 -27
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml +32 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml +33 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml +32 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml +32 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml +30 -0
- {redis_benchmarks_specification-0.1.218.dist-info → redis_benchmarks_specification-0.1.220.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.218.dist-info → redis_benchmarks_specification-0.1.220.dist-info}/RECORD +14 -7
- {redis_benchmarks_specification-0.1.218.dist-info → redis_benchmarks_specification-0.1.220.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.218.dist-info → redis_benchmarks_specification-0.1.220.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.218.dist-info → redis_benchmarks_specification-0.1.220.dist-info}/entry_points.txt +0 -0
|
@@ -96,6 +96,9 @@ def create_compare_arguments(parser):
|
|
|
96
96
|
parser.add_argument(
|
|
97
97
|
"--baseline-target-version", type=str, default=None, required=False
|
|
98
98
|
)
|
|
99
|
+
parser.add_argument(
|
|
100
|
+
"--baseline-target-branch", type=str, default=None, required=False
|
|
101
|
+
)
|
|
99
102
|
parser.add_argument("--comparison-branch", type=str, default=None, required=False)
|
|
100
103
|
parser.add_argument(
|
|
101
104
|
"--baseline-github-repo", type=str, default="redis", required=False
|
|
@@ -108,6 +111,9 @@ def create_compare_arguments(parser):
|
|
|
108
111
|
parser.add_argument(
|
|
109
112
|
"--comparison-target-version", type=str, default=None, required=False
|
|
110
113
|
)
|
|
114
|
+
parser.add_argument(
|
|
115
|
+
"--comparison-target-branch", type=str, default=None, required=False
|
|
116
|
+
)
|
|
111
117
|
parser.add_argument("--print-regressions-only", type=bool, default=False)
|
|
112
118
|
parser.add_argument("--print-improvements-only", type=bool, default=False)
|
|
113
119
|
parser.add_argument("--skip-unstable", type=bool, default=False)
|
|
@@ -203,6 +203,8 @@ def compare_command_logic(args, project_name, project_version):
|
|
|
203
203
|
)
|
|
204
204
|
)
|
|
205
205
|
baseline_branch = default_baseline_branch
|
|
206
|
+
if baseline_branch == "":
|
|
207
|
+
baseline_branch = None
|
|
206
208
|
comparison_branch = args.comparison_branch
|
|
207
209
|
simplify_table = args.simple_table
|
|
208
210
|
print_regressions_only = args.print_regressions_only
|
|
@@ -250,6 +252,8 @@ def compare_command_logic(args, project_name, project_version):
|
|
|
250
252
|
running_platform = args.running_platform
|
|
251
253
|
baseline_target_version = args.baseline_target_version
|
|
252
254
|
comparison_target_version = args.comparison_target_version
|
|
255
|
+
baseline_target_branch = args.baseline_target_branch
|
|
256
|
+
comparison_target_branch = args.comparison_target_branch
|
|
253
257
|
baseline_github_repo = args.baseline_github_repo
|
|
254
258
|
comparison_github_repo = args.comparison_github_repo
|
|
255
259
|
baseline_hash = args.baseline_hash
|
|
@@ -318,6 +322,8 @@ def compare_command_logic(args, project_name, project_version):
|
|
|
318
322
|
comparison_hash,
|
|
319
323
|
baseline_github_repo,
|
|
320
324
|
comparison_github_repo,
|
|
325
|
+
baseline_target_branch,
|
|
326
|
+
comparison_target_branch,
|
|
321
327
|
)
|
|
322
328
|
prepare_regression_comment(
|
|
323
329
|
auto_approve,
|
|
@@ -547,6 +553,8 @@ def compute_regression_table(
|
|
|
547
553
|
baseline_hash=None,
|
|
548
554
|
baseline_github_repo="redis",
|
|
549
555
|
comparison_github_repo="redis",
|
|
556
|
+
baseline_target_branch=None,
|
|
557
|
+
comparison_target_branch=None,
|
|
550
558
|
):
|
|
551
559
|
START_TIME_NOW_UTC, _, _ = get_start_time_vars()
|
|
552
560
|
START_TIME_LAST_MONTH_UTC = START_TIME_NOW_UTC - datetime.timedelta(days=31)
|
|
@@ -574,6 +582,8 @@ def compute_regression_table(
|
|
|
574
582
|
comparison_target_version,
|
|
575
583
|
comparison_hash,
|
|
576
584
|
baseline_hash,
|
|
585
|
+
baseline_target_branch,
|
|
586
|
+
comparison_target_branch,
|
|
577
587
|
)
|
|
578
588
|
logging.info(f"Using baseline filter {by_str_baseline}={baseline_str}")
|
|
579
589
|
logging.info(f"Using comparison filter {by_str_comparison}={comparison_str}")
|
|
@@ -739,6 +749,11 @@ def compute_regression_table(
|
|
|
739
749
|
)
|
|
740
750
|
|
|
741
751
|
|
|
752
|
+
def get_by_error(name, by_str_arr):
|
|
753
|
+
by_string = ",".join(by_str_arr)
|
|
754
|
+
return f"--{name}-branch, --{name}-tag, --{name}-target-branch, --{name}-hash, and --{name}-target-version are mutually exclusive. You selected a total of {len(by_str_arr)}: {by_string}. Pick one..."
|
|
755
|
+
|
|
756
|
+
|
|
742
757
|
def get_by_strings(
|
|
743
758
|
baseline_branch,
|
|
744
759
|
comparison_branch,
|
|
@@ -748,6 +763,8 @@ def get_by_strings(
|
|
|
748
763
|
comparison_target_version=None,
|
|
749
764
|
baseline_hash=None,
|
|
750
765
|
comparison_hash=None,
|
|
766
|
+
baseline_target_branch=None,
|
|
767
|
+
comparison_target_branch=None,
|
|
751
768
|
):
|
|
752
769
|
baseline_covered = False
|
|
753
770
|
comparison_covered = False
|
|
@@ -755,50 +772,64 @@ def get_by_strings(
|
|
|
755
772
|
by_str_comparison = ""
|
|
756
773
|
baseline_str = ""
|
|
757
774
|
comparison_str = ""
|
|
775
|
+
baseline_by_arr = []
|
|
776
|
+
comparison_by_arr = []
|
|
777
|
+
|
|
778
|
+
################# BASELINE BY ....
|
|
779
|
+
|
|
758
780
|
if baseline_branch is not None:
|
|
759
|
-
baseline_covered = True
|
|
760
781
|
by_str_baseline = "branch"
|
|
782
|
+
baseline_covered = True
|
|
761
783
|
baseline_str = baseline_branch
|
|
762
|
-
|
|
763
|
-
comparison_covered = True
|
|
764
|
-
by_str_comparison = "branch"
|
|
765
|
-
comparison_str = comparison_branch
|
|
784
|
+
baseline_by_arr.append(by_str_baseline)
|
|
766
785
|
|
|
767
786
|
if baseline_tag is not None:
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
)
|
|
787
|
+
by_str_baseline = "version"
|
|
788
|
+
if baseline_covered:
|
|
789
|
+
baseline_by_arr.append(by_str_baseline)
|
|
790
|
+
logging.error(get_by_error("baseline", baseline_by_arr))
|
|
772
791
|
exit(1)
|
|
773
792
|
baseline_covered = True
|
|
774
|
-
by_str_baseline = "version"
|
|
775
793
|
baseline_str = baseline_tag
|
|
776
794
|
|
|
777
795
|
if baseline_target_version is not None:
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
)
|
|
796
|
+
by_str_baseline = "target+version"
|
|
797
|
+
if baseline_covered:
|
|
798
|
+
baseline_by_arr.append(by_str_baseline)
|
|
799
|
+
logging.error(get_by_error("baseline", baseline_by_arr))
|
|
782
800
|
exit(1)
|
|
783
801
|
baseline_covered = True
|
|
784
|
-
by_str_baseline = "target+version"
|
|
785
802
|
baseline_str = baseline_target_version
|
|
786
803
|
|
|
787
804
|
if baseline_hash is not None:
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
)
|
|
805
|
+
by_str_baseline = "hash"
|
|
806
|
+
if baseline_covered:
|
|
807
|
+
baseline_by_arr.append(by_str_baseline)
|
|
808
|
+
logging.error(get_by_error("baseline", baseline_by_arr))
|
|
792
809
|
exit(1)
|
|
793
810
|
baseline_covered = True
|
|
794
|
-
by_str_baseline = "hash"
|
|
795
811
|
baseline_str = baseline_hash
|
|
812
|
+
if baseline_target_branch is not None:
|
|
813
|
+
by_str_baseline = "target+branch"
|
|
814
|
+
if baseline_covered:
|
|
815
|
+
baseline_by_arr.append(by_str_baseline)
|
|
816
|
+
logging.error(get_by_error("baseline", baseline_by_arr))
|
|
817
|
+
exit(1)
|
|
818
|
+
baseline_covered = True
|
|
819
|
+
baseline_str = baseline_target_branch
|
|
820
|
+
|
|
821
|
+
################# COMPARISON BY ....
|
|
822
|
+
|
|
823
|
+
if comparison_branch is not None:
|
|
824
|
+
by_str_comparison = "branch"
|
|
825
|
+
comparison_covered = True
|
|
826
|
+
comparison_str = comparison_branch
|
|
796
827
|
|
|
797
828
|
if comparison_tag is not None:
|
|
798
829
|
# check if we had already covered comparison
|
|
799
830
|
if comparison_covered:
|
|
800
831
|
logging.error(
|
|
801
|
-
"--comparison-branch and --comparison-tag are mutually exclusive. Pick one..."
|
|
832
|
+
"--comparison-branch and --comparison-tag, --comparison-hash, --comparison-target-branch, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
802
833
|
)
|
|
803
834
|
exit(1)
|
|
804
835
|
comparison_covered = True
|
|
@@ -808,18 +839,29 @@ def get_by_strings(
|
|
|
808
839
|
# check if we had already covered comparison
|
|
809
840
|
if comparison_covered:
|
|
810
841
|
logging.error(
|
|
811
|
-
"--comparison-branch, --comparison-tag, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
842
|
+
"--comparison-branch, --comparison-tag, --comparison-hash, --comparison-target-branch, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
812
843
|
)
|
|
813
844
|
exit(1)
|
|
814
845
|
comparison_covered = True
|
|
815
846
|
by_str_comparison = "target+version"
|
|
816
847
|
comparison_str = comparison_target_version
|
|
817
848
|
|
|
849
|
+
if comparison_target_branch is not None:
|
|
850
|
+
# check if we had already covered comparison
|
|
851
|
+
if comparison_covered:
|
|
852
|
+
logging.error(
|
|
853
|
+
"--comparison-branch, --comparison-tag, --comparison-hash, --comparison-target-branch, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
854
|
+
)
|
|
855
|
+
exit(1)
|
|
856
|
+
comparison_covered = True
|
|
857
|
+
by_str_comparison = "target+branch"
|
|
858
|
+
comparison_str = comparison_target_branch
|
|
859
|
+
|
|
818
860
|
if comparison_hash is not None:
|
|
819
861
|
# check if we had already covered comparison
|
|
820
862
|
if comparison_covered:
|
|
821
863
|
logging.error(
|
|
822
|
-
"--comparison-branch, --comparison-tag, --comparison-hash, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
864
|
+
"--comparison-branch, --comparison-tag, --comparison-hash, --comparison-target-branch, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
823
865
|
)
|
|
824
866
|
exit(1)
|
|
825
867
|
comparison_covered = True
|
|
@@ -829,13 +871,13 @@ def get_by_strings(
|
|
|
829
871
|
if baseline_covered is False:
|
|
830
872
|
logging.error(
|
|
831
873
|
"You need to provider either "
|
|
832
|
-
+ "( --baseline-branch, --baseline-tag, --baseline-hash, or --baseline-target-version ) "
|
|
874
|
+
+ "( --baseline-branch, --baseline-tag, --baseline-hash, --baseline-target-branch or --baseline-target-version ) "
|
|
833
875
|
)
|
|
834
876
|
exit(1)
|
|
835
877
|
if comparison_covered is False:
|
|
836
878
|
logging.error(
|
|
837
879
|
"You need to provider either "
|
|
838
|
-
+ "( --comparison-branch, --comparison-tag, --comparison-hash, or --comparison-target-version ) "
|
|
880
|
+
+ "( --comparison-branch, --comparison-tag, --comparison-hash, --comparison-target-branch or --comparison-target-version ) "
|
|
839
881
|
)
|
|
840
882
|
exit(1)
|
|
841
883
|
return baseline_str, by_str_baseline, comparison_str, by_str_comparison
|
|
@@ -1252,9 +1294,9 @@ def get_v_pct_change_and_largest_var(
|
|
|
1252
1294
|
if last_n < 0 or (last_n > 0 and len(comparison_values) < last_n):
|
|
1253
1295
|
comparison_values.append(tuple[1])
|
|
1254
1296
|
comparison_df = pd.DataFrame(comparison_values)
|
|
1255
|
-
comparison_median = float(comparison_df.median())
|
|
1297
|
+
comparison_median = float(comparison_df.median().iloc[0])
|
|
1256
1298
|
comparison_v = comparison_median
|
|
1257
|
-
comparison_std = float(comparison_df.std())
|
|
1299
|
+
comparison_std = float(comparison_df.std().iloc[0])
|
|
1258
1300
|
if verbose:
|
|
1259
1301
|
logging.info(
|
|
1260
1302
|
"comparison_datapoints: {} value: {}; std-dev: {}; median: {}".format(
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-geo-2-elements-geopos
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 GEO key. The GEO key contains 2 elements and comes from the example of https://redis.io/docs/latest/commands/geopos, and we query it using GEOPOS command.'
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
init_commands:
|
|
13
|
+
- '"GEOADD" "Sicily" "13.361389" "38.115556" "Palermo" "15.087269" "37.502669" "Catania"'
|
|
14
|
+
tested-groups:
|
|
15
|
+
- geo
|
|
16
|
+
tested-commands:
|
|
17
|
+
- geopos
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: -c 50 -t 4 --command="GEOPOS Sicily Palermo Catania" --hide-histogram --test-time 120
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
priority: 138
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 GEO key. The GEO key contains 2 elements and comes from the example of https://redis.io/docs/latest/commands/geosearch, and we query it using GEOSEARCH command.'
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
init_commands:
|
|
13
|
+
- '"GEOADD" "Sicily" "13.361389" "38.115556" "Palermo" "15.087269" "37.502669" "Catania"'
|
|
14
|
+
- '"GEOADD" "Sicily" "12.758489" "38.788135" "edge1" "17.241510" "38.788135" "edge2"'
|
|
15
|
+
tested-groups:
|
|
16
|
+
- geo
|
|
17
|
+
tested-commands:
|
|
18
|
+
- geosearch
|
|
19
|
+
redis-topologies:
|
|
20
|
+
- oss-standalone
|
|
21
|
+
build-variants:
|
|
22
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
23
|
+
- dockerhub
|
|
24
|
+
clientconfig:
|
|
25
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
26
|
+
tool: memtier_benchmark
|
|
27
|
+
arguments: -c 50 -t 4 --command="GEOSEARCH Sicily FROMLONLAT 15 37 BYBOX 400 400 km ASC WITHCOORD WITHDIST" --hide-histogram --test-time 120
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpus: '4'
|
|
31
|
+
memory: 2g
|
|
32
|
+
|
|
33
|
+
priority: 138
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-set-100-elements-sismember-is-a-member
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 SET key. The SET contains 100 elements in it and we query it using SISMEMBER in which the value is a member. '
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
init_commands:
|
|
13
|
+
- '"SADD" "set:100" "vyoomgwuzv" "xamjodnbpf" "ewomnmugfa" "ljcgdooafo" "pcxdhdjwnf" "djetcyfxuc" "licotqplim" "alqlzsvuuz" "ijsmoyesvd" "whmotknaff" "rkaznetutk" "ksqpdywgdd" "gorgpnnqwr" "gekntrykfh" "rjkknoigmu" "luemuetmia" "gxephxbdru" "ncjfckgkcl" "hhjclfbbka" "cgoeihlnei" "zwnitejtpg" "upodnpqenn" "mibvtmqxcy" "htvbwmfyic" "rqvryfvlie" "nxcdcaqgit" "gfdqdrondm" "lysbgqqfqw" "nxzsnkmxvi" "nsxaigrnje" "cwaveajmcz" "xsepfhdizi" "owtkxlzaci" "agsdggdghc" "tcjvjofxtd" "kgqrovsxce" "ouuybhtvyb" "ueyrvldzwl" "vpbkvwgxsf" "pytrnqdhvs" "qbiwbqiubb" "ssjqrsluod" "urvgxwbiiz" "ujrxcmpvsq" "mtccjerdon" "xczfmrxrja" "imyizmhzjk" "oguwnmniig" "mxwgdcutnb" "pqyurbvifk" "ccagtnjilc" "mbxohpancs" "lgrkndhekf" "eqlgkwosie" "jxoxtnzujs" "lbtpbknelm" "ichqzmiyot" "mbgehjiauu" "aovfsvbwjg" "nmgxcctxpn" "vyqqkuszzh" "rojeolnopp" "ibhohmfxzt" "qbyhorvill" "nhfnbxqgol" "wkbasfyzqz" "mjjuylgssm" "imdqxmkzdj" "oapbvnisyq" "bqntlsaqjb" "ocrcszcznp" "hhniikmtsx" "hlpdstpvzw" "wqiwdbncmt" "vymjzlzqcn" "hhjchwjlmc" "ypfeltycpy" "qjyeqcfhjj" "uapsgmizgh" "owbbdezgxn" "qrosceblyo" "sahqeskveq" "dapacykoah" "wvcnqbvlnf" "perfwnpvkl" "ulbrotlhze" "fhuvzpxjbc" "holjcdpijr" "onzjrteqmu" "pquewclxuy" "vpmpffdoqz" "eouliovvra" "vxcbagyymm" "jekkafodvk" "ypekeuutef" "dlbqcynhrn" "erxulvebrj" "qwxrsgafzy" "dlsjwmqzhx" "exvhmqxvvp"'
|
|
14
|
+
tested-groups:
|
|
15
|
+
- set
|
|
16
|
+
tested-commands:
|
|
17
|
+
- sismember
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: --command="SISMEMBER set:100 lysbgqqfqw" --hide-histogram --test-time 180
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
priority: 1
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-set-100-elements-sismember-not-a-member
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 SET key. The SET contains 100 elements in it and we query it using SISMEMBER in which the value is not a member. '
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
init_commands:
|
|
13
|
+
- '"SADD" "set:100" "vyoomgwuzv" "xamjodnbpf" "ewomnmugfa" "ljcgdooafo" "pcxdhdjwnf" "djetcyfxuc" "licotqplim" "alqlzsvuuz" "ijsmoyesvd" "whmotknaff" "rkaznetutk" "ksqpdywgdd" "gorgpnnqwr" "gekntrykfh" "rjkknoigmu" "luemuetmia" "gxephxbdru" "ncjfckgkcl" "hhjclfbbka" "cgoeihlnei" "zwnitejtpg" "upodnpqenn" "mibvtmqxcy" "htvbwmfyic" "rqvryfvlie" "nxcdcaqgit" "gfdqdrondm" "lysbgqqfqw" "nxzsnkmxvi" "nsxaigrnje" "cwaveajmcz" "xsepfhdizi" "owtkxlzaci" "agsdggdghc" "tcjvjofxtd" "kgqrovsxce" "ouuybhtvyb" "ueyrvldzwl" "vpbkvwgxsf" "pytrnqdhvs" "qbiwbqiubb" "ssjqrsluod" "urvgxwbiiz" "ujrxcmpvsq" "mtccjerdon" "xczfmrxrja" "imyizmhzjk" "oguwnmniig" "mxwgdcutnb" "pqyurbvifk" "ccagtnjilc" "mbxohpancs" "lgrkndhekf" "eqlgkwosie" "jxoxtnzujs" "lbtpbknelm" "ichqzmiyot" "mbgehjiauu" "aovfsvbwjg" "nmgxcctxpn" "vyqqkuszzh" "rojeolnopp" "ibhohmfxzt" "qbyhorvill" "nhfnbxqgol" "wkbasfyzqz" "mjjuylgssm" "imdqxmkzdj" "oapbvnisyq" "bqntlsaqjb" "ocrcszcznp" "hhniikmtsx" "hlpdstpvzw" "wqiwdbncmt" "vymjzlzqcn" "hhjchwjlmc" "ypfeltycpy" "qjyeqcfhjj" "uapsgmizgh" "owbbdezgxn" "qrosceblyo" "sahqeskveq" "dapacykoah" "wvcnqbvlnf" "perfwnpvkl" "ulbrotlhze" "fhuvzpxjbc" "holjcdpijr" "onzjrteqmu" "pquewclxuy" "vpmpffdoqz" "eouliovvra" "vxcbagyymm" "jekkafodvk" "ypekeuutef" "dlbqcynhrn" "erxulvebrj" "qwxrsgafzy" "dlsjwmqzhx" "exvhmqxvvp"'
|
|
14
|
+
tested-groups:
|
|
15
|
+
- set
|
|
16
|
+
tested-commands:
|
|
17
|
+
- sismember
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: --command="SISMEMBER set:100 not-a-member" --hide-histogram --test-time 180
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
priority: 1
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 SET key with 10M elements. We query it using SISMEMBER in which the value has 50% change of being member. '
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
preload_tool:
|
|
13
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
14
|
+
tool: memtier_benchmark
|
|
15
|
+
arguments: --command="SADD set:10M:elements __key__" --command-key-pattern=P --key-maximum 10000000 --key-prefix "" -n 10000000 --hide-histogram -t 1 -c 1
|
|
16
|
+
tested-groups:
|
|
17
|
+
- set
|
|
18
|
+
tested-commands:
|
|
19
|
+
- sadd
|
|
20
|
+
- sismember
|
|
21
|
+
redis-topologies:
|
|
22
|
+
- oss-standalone
|
|
23
|
+
build-variants:
|
|
24
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
25
|
+
- dockerhub
|
|
26
|
+
clientconfig:
|
|
27
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
28
|
+
tool: memtier_benchmark
|
|
29
|
+
arguments: --command="SISMEMBER set:10M:elements __key__" --key-maximum 20000000 --key-prefix "" --hide-histogram --test-time 180
|
|
30
|
+
resources:
|
|
31
|
+
requests:
|
|
32
|
+
cpus: '4'
|
|
33
|
+
memory: 2g
|
|
34
|
+
priority: 1
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance
|
|
3
|
+
description: 'Runs memtier_benchmark, for a keyspace length of 1 SET key with 1M elements. We query it using SISMEMBER in which the value has 50% change of being member. '
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
preload_tool:
|
|
13
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
14
|
+
tool: memtier_benchmark
|
|
15
|
+
arguments: --command="SADD set:1M:elements __key__" --command-key-pattern=P --key-maximum 1000000 --key-prefix "" -n 1000000 --hide-histogram -t 1 -c 1
|
|
16
|
+
tested-groups:
|
|
17
|
+
- set
|
|
18
|
+
tested-commands:
|
|
19
|
+
- sadd
|
|
20
|
+
- sismember
|
|
21
|
+
redis-topologies:
|
|
22
|
+
- oss-standalone
|
|
23
|
+
build-variants:
|
|
24
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
25
|
+
- dockerhub
|
|
26
|
+
clientconfig:
|
|
27
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
28
|
+
tool: memtier_benchmark
|
|
29
|
+
arguments: --command="SISMEMBER set:1M:elements __key__" --key-maximum 2000000 --key-prefix "" --hide-histogram --test-time 180
|
|
30
|
+
resources:
|
|
31
|
+
requests:
|
|
32
|
+
cpus: '4'
|
|
33
|
+
memory: 2g
|
|
34
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-connection-hello
|
|
3
|
+
description: 'Runs memtier_benchmark, for no keyspace, benchmarking the connection setup scenario using HELLO command.'
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
tested-groups:
|
|
13
|
+
- connection
|
|
14
|
+
tested-commands:
|
|
15
|
+
- hello
|
|
16
|
+
redis-topologies:
|
|
17
|
+
- oss-standalone
|
|
18
|
+
build-variants:
|
|
19
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
20
|
+
- dockerhub
|
|
21
|
+
clientconfig:
|
|
22
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
23
|
+
tool: memtier_benchmark
|
|
24
|
+
arguments: -c 50 -t 4 --command="HELLO 2 SETNAME __key__" --hide-histogram --test-time 120
|
|
25
|
+
resources:
|
|
26
|
+
requests:
|
|
27
|
+
cpus: '4'
|
|
28
|
+
memory: 2g
|
|
29
|
+
|
|
30
|
+
priority: 1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.220
|
|
4
4
|
Summary: The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute.
|
|
5
5
|
Author: filipecosta90
|
|
6
6
|
Author-email: filipecosta.90@gmail.com
|
|
@@ -19,8 +19,8 @@ redis_benchmarks_specification/__common__/runner.py,sha256=7DBI09eu_4RibK6MwcYyI
|
|
|
19
19
|
redis_benchmarks_specification/__common__/spec.py,sha256=eTF5559epBB0FrJPx-jRDQVeP_ZVOgyC7Vjxr2xk6fo,3262
|
|
20
20
|
redis_benchmarks_specification/__common__/timeseries.py,sha256=_LJFtC5sVP7DTaLZaIzv5g7wRxPTQZRwFIYvWX4p4N8,50533
|
|
21
21
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
22
|
-
redis_benchmarks_specification/__compare__/args.py,sha256=
|
|
23
|
-
redis_benchmarks_specification/__compare__/compare.py,sha256=
|
|
22
|
+
redis_benchmarks_specification/__compare__/args.py,sha256=k1e2L67IQKEBPvNBfY-jC_cR1x4ueSg-7u-1e8tJ9aQ,6155
|
|
23
|
+
redis_benchmarks_specification/__compare__/compare.py,sha256=E-O5NfByFWWVTktrhwq-aRtBdboHf9eZEVFFMf0dwSQ,45313
|
|
24
24
|
redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gqDKgzvNJnkGNKY,491
|
|
25
25
|
redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
26
26
|
redis_benchmarks_specification/__runner__/args.py,sha256=lYvbPd_3ppHZv4f2sRwXcF-fcBrwRSn3H2RMmNVkojY,7221
|
|
@@ -108,6 +108,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-2
|
|
|
108
108
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-20KiB.yml,sha256=nZ_c5DV8lKWMmgW9Scgh4WGNA9tD0nkCYssp0syHJfs,950
|
|
109
109
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-2MB.yml,sha256=JslW9y5ItM3I5yoZY2yNiDSD0XQrW9m1hKLDtC8ImVQ,1011
|
|
110
110
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml,sha256=s1PLNH__vexG6bE-GL_xPAqVelupxY73AWWE5siYIYE,999
|
|
111
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml,sha256=Mni3vvF4iSy1OJ_9USsYhh6RPd0x5Sss37E1UcL2J3Q,931
|
|
112
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml,sha256=qo26OHdRFwmtH9ZGzj-bsasjzYoa4DGL2ODuDbOdgAE,1097
|
|
111
113
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml,sha256=fnLeuvhBxNit7iO2D7P4Ybxahw0e_U6wXy0IudNhQVM,890
|
|
112
114
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist.yml,sha256=l88SV31p15gOTtRycS3ZLHsV3b4A5BpQ-T6bLXOfVnI,864
|
|
113
115
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geohash-pipeline-10.yml,sha256=-GZ3nPHpJn50JIgadeW7YolmxYvSNFuOD4zTpsstFNw,869
|
|
@@ -124,9 +126,13 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-pfadd-4KB-valu
|
|
|
124
126
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers-pipeline-10.yml,sha256=GGTJjBl03pAUrDqpSB60uPZQn8CFH8nT-5ec1bdPmzA,944
|
|
125
127
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smembers.yml,sha256=yNIpCPO7slCQbv8H6gRCZyHu5ARteVZSkZw4jPl6CBU,918
|
|
126
128
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10-elements-smismember.yml,sha256=MkSsnFsMhSfoqV13dHa2joAkGwk98rB1vHLG1ZcJ_0Q,992
|
|
129
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-is-a-member.yml,sha256=T28C1dlaLqErpmeJjcCFSXGmYwK8i6x5xgp9bK2KdLc,2123
|
|
130
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-sismember-not-a-member.yml,sha256=Fu-fiYNxvy7KfOl4aY5GH8yq3omnesPKO8Uto2c6bI8,2130
|
|
127
131
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smembers.yml,sha256=v_YPymKgk-TAAax1Z-WLPb9FlGDxR3YZzHTu3TOLdMY,2090
|
|
128
132
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elements-smismember.yml,sha256=yIpS_oixm5c9XjWrXXbnD7HpkdS-9qcoqbpQNjvT2kQ,2171
|
|
133
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml,sha256=2dn2klO6QnFfttaZi2OXlv_lHggL7_bxYBL3PZJFQw4,1083
|
|
129
134
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-smembers.yml,sha256=obobyni8avSLoTOTEEWfT_YFuVgpTma9fGszc_JX2lI,13792
|
|
135
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml,sha256=o47aHfpCJ78VX2SOg8TKYkEHTyRGmQj-MRgtkiX4I0I,1076
|
|
130
136
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml,sha256=spiUdTx0kSZ0xcilXjOzN5UtmFm08dekzR2YQ0QPJUE,1060
|
|
131
137
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml,sha256=cmAyCOBnDSbtoxj1AJKAfAUwGk4zmqv2whlDB7z0QJw,766
|
|
132
138
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml,sha256=_gp943gEk2E-hYtwbHLhgJ0G4v4-nRkHJyKgNLXVPJM,1098
|
|
@@ -151,9 +157,10 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-el
|
|
|
151
157
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml,sha256=7yWCmQTtiypmF1tHGV61z9Zh5EH8CVuETu7bDNC4V6g,1138
|
|
152
158
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml,sha256=Z6T75dIbjRb4YO1tFIV9K4S_KFzRHfAa4q3kOg0vcHw,1112
|
|
153
159
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml,sha256=XAIFlbR6VJnmQRwedLGBGenbIsMC_I3uA35Mz_bkTTc,1028
|
|
160
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
|
|
154
161
|
redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
|
|
155
|
-
redis_benchmarks_specification-0.1.
|
|
156
|
-
redis_benchmarks_specification-0.1.
|
|
157
|
-
redis_benchmarks_specification-0.1.
|
|
158
|
-
redis_benchmarks_specification-0.1.
|
|
159
|
-
redis_benchmarks_specification-0.1.
|
|
162
|
+
redis_benchmarks_specification-0.1.220.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
163
|
+
redis_benchmarks_specification-0.1.220.dist-info/METADATA,sha256=rLl2fUc-H21UQpTR5dOuBNZ7q8Vsks7THg6Jmpzcc2M,22726
|
|
164
|
+
redis_benchmarks_specification-0.1.220.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
165
|
+
redis_benchmarks_specification-0.1.220.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
166
|
+
redis_benchmarks_specification-0.1.220.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|