redis-benchmarks-specification 0.1.216__py3-none-any.whl → 0.1.218__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.
- redis_benchmarks_specification/__builder__/builder.py +35 -0
- redis_benchmarks_specification/__cli__/args.py +15 -0
- redis_benchmarks_specification/__cli__/cli.py +22 -0
- redis_benchmarks_specification/__common__/builder_schema.py +4 -0
- redis_benchmarks_specification/__common__/runner.py +1 -1
- redis_benchmarks_specification/__compare__/args.py +8 -0
- redis_benchmarks_specification/__compare__/compare.py +61 -3
- redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py +5 -0
- {redis_benchmarks_specification-0.1.216.dist-info → redis_benchmarks_specification-0.1.218.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.216.dist-info → redis_benchmarks_specification-0.1.218.dist-info}/RECORD +13 -13
- {redis_benchmarks_specification-0.1.216.dist-info → redis_benchmarks_specification-0.1.218.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.216.dist-info → redis_benchmarks_specification-0.1.218.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.216.dist-info → redis_benchmarks_specification-0.1.218.dist-info}/entry_points.txt +0 -0
|
@@ -234,6 +234,7 @@ def builder_process_stream(
|
|
|
234
234
|
if b"git_hash" in testDetails:
|
|
235
235
|
git_hash = testDetails[b"git_hash"]
|
|
236
236
|
logging.info("Received commit hash specifier {}.".format(git_hash))
|
|
237
|
+
logging.info(f"Received the following build stream: {testDetails}.")
|
|
237
238
|
binary_zip_key = testDetails[b"zip_archive_key"]
|
|
238
239
|
logging.info(
|
|
239
240
|
"Retriving zipped source from key {}.".format(
|
|
@@ -271,6 +272,16 @@ def builder_process_stream(
|
|
|
271
272
|
if b"tests_groups_regexp" in testDetails:
|
|
272
273
|
tests_groups_regexp = testDetails[b"tests_groups_regexp"].decode()
|
|
273
274
|
|
|
275
|
+
github_org = "redis"
|
|
276
|
+
if b"github_org" in testDetails:
|
|
277
|
+
github_org = testDetails[b"github_org"].decode()
|
|
278
|
+
logging.info(f"detected github_org info on build stream {github_org}")
|
|
279
|
+
|
|
280
|
+
github_repo = "redis"
|
|
281
|
+
if b"github_repo" in testDetails:
|
|
282
|
+
github_repo = testDetails[b"github_repo"].decode()
|
|
283
|
+
logging.info(f"detected github_repo info on build stream {github_repo}")
|
|
284
|
+
|
|
274
285
|
# github updates
|
|
275
286
|
is_actionable_pr = False
|
|
276
287
|
contains_regression_comment = False
|
|
@@ -321,6 +332,14 @@ def builder_process_stream(
|
|
|
321
332
|
build_artifacts = ["redis-server"]
|
|
322
333
|
if "build_artifacts" in build_config:
|
|
323
334
|
build_artifacts = build_config["build_artifacts"]
|
|
335
|
+
if b"build_artifacts" in testDetails:
|
|
336
|
+
new_build_artifacts = (
|
|
337
|
+
testDetails[b"build_artifacts"].decode().split(",")
|
|
338
|
+
)
|
|
339
|
+
logging.info(
|
|
340
|
+
f"overriding default build artifacts {build_artifacts} by {new_build_artifacts}"
|
|
341
|
+
)
|
|
342
|
+
build_artifacts = new_build_artifacts
|
|
324
343
|
build_vars_str = ""
|
|
325
344
|
if "env" in build_config:
|
|
326
345
|
if build_config["env"] is not None:
|
|
@@ -361,6 +380,12 @@ def builder_process_stream(
|
|
|
361
380
|
"redis-server",
|
|
362
381
|
build_vars_str,
|
|
363
382
|
)
|
|
383
|
+
if b"build_command" in testDetails:
|
|
384
|
+
build_command = testDetails[b"build_command"].decode()
|
|
385
|
+
server_name = "redis"
|
|
386
|
+
if b"server_name" in testDetails:
|
|
387
|
+
server_name = testDetails[b"server_name"].decode()
|
|
388
|
+
|
|
364
389
|
build_start_datetime = datetime.datetime.utcnow()
|
|
365
390
|
logging.info(
|
|
366
391
|
"Using the following build command {}.".format(build_command)
|
|
@@ -435,6 +460,9 @@ def builder_process_stream(
|
|
|
435
460
|
tests_priority_upper_limit,
|
|
436
461
|
tests_regexp,
|
|
437
462
|
use_git_timestamp,
|
|
463
|
+
server_name,
|
|
464
|
+
github_org,
|
|
465
|
+
github_repo,
|
|
438
466
|
)
|
|
439
467
|
if result is True:
|
|
440
468
|
benchmark_stream_id = conn.xadd(
|
|
@@ -572,6 +600,9 @@ def generate_benchmark_stream_request(
|
|
|
572
600
|
tests_priority_upper_limit=10000,
|
|
573
601
|
tests_regexp=".*",
|
|
574
602
|
use_git_timestamp=False,
|
|
603
|
+
server_name="redis",
|
|
604
|
+
github_org="redis",
|
|
605
|
+
github_repo="redis",
|
|
575
606
|
):
|
|
576
607
|
build_stream_fields = {
|
|
577
608
|
"id": id,
|
|
@@ -584,6 +615,9 @@ def generate_benchmark_stream_request(
|
|
|
584
615
|
"tests_priority_upper_limit": tests_priority_upper_limit,
|
|
585
616
|
"tests_priority_lower_limit": tests_priority_lower_limit,
|
|
586
617
|
"tests_groups_regexp": tests_groups_regexp,
|
|
618
|
+
"server_name": server_name,
|
|
619
|
+
"github_org": github_org,
|
|
620
|
+
"github_repo": github_repo,
|
|
587
621
|
}
|
|
588
622
|
if build_config_metadata is not None:
|
|
589
623
|
build_stream_fields["metadata"] = json.dumps(build_config_metadata)
|
|
@@ -594,6 +628,7 @@ def generate_benchmark_stream_request(
|
|
|
594
628
|
if build_vars_str is not None:
|
|
595
629
|
build_stream_fields["build_vars"] = build_vars_str
|
|
596
630
|
if build_command is not None:
|
|
631
|
+
logging.info(f"adding build_command: {build_command}")
|
|
597
632
|
build_stream_fields["build_command"] = build_command
|
|
598
633
|
if build_image is not None:
|
|
599
634
|
build_stream_fields["build_image"] = build_image
|
|
@@ -166,6 +166,21 @@ def spec_cli_args(parser):
|
|
|
166
166
|
action="store_true",
|
|
167
167
|
help="Iterate over the git commits.",
|
|
168
168
|
)
|
|
169
|
+
parser.add_argument(
|
|
170
|
+
"--build_artifacts",
|
|
171
|
+
type=str,
|
|
172
|
+
default="",
|
|
173
|
+
)
|
|
174
|
+
parser.add_argument(
|
|
175
|
+
"--build_command",
|
|
176
|
+
type=str,
|
|
177
|
+
default="",
|
|
178
|
+
)
|
|
179
|
+
parser.add_argument(
|
|
180
|
+
"--git_hash",
|
|
181
|
+
type=str,
|
|
182
|
+
default="",
|
|
183
|
+
)
|
|
169
184
|
parser.add_argument(
|
|
170
185
|
"--dry-run",
|
|
171
186
|
default=False,
|
|
@@ -351,10 +351,24 @@ def trigger_tests_cli_command_logic(args, project_name, project_version):
|
|
|
351
351
|
hash_regexp
|
|
352
352
|
)
|
|
353
353
|
)
|
|
354
|
+
enable_hash_filtering = False
|
|
355
|
+
hash_filters = []
|
|
356
|
+
if args.git_hash != "":
|
|
357
|
+
enable_hash_filtering = True
|
|
358
|
+
hash_filters = args.git_hash.split(",")
|
|
359
|
+
logging.info(
|
|
360
|
+
f"There is a total of {len(hash_filters)} commit hash fitlers: {hash_filters}"
|
|
361
|
+
)
|
|
354
362
|
hash_regexp_string = re.compile(hash_regexp)
|
|
355
363
|
filtered_hash_commits = []
|
|
356
364
|
for cdict in commits:
|
|
357
365
|
commit_hash = cdict["git_hash"]
|
|
366
|
+
if enable_hash_filtering:
|
|
367
|
+
if commit_hash not in hash_filters:
|
|
368
|
+
logging.info(
|
|
369
|
+
f"Skipping {commit_hash} given it does not match any commit hash in {hash_filters}"
|
|
370
|
+
)
|
|
371
|
+
continue
|
|
358
372
|
commit_summary = cdict["commit_summary"]
|
|
359
373
|
commit_datetime = cdict["commit_datetime"]
|
|
360
374
|
match_obj = re.search(hash_regexp_string, commit_hash)
|
|
@@ -412,6 +426,14 @@ def trigger_tests_cli_command_logic(args, project_name, project_version):
|
|
|
412
426
|
commit_dict["tests_priority_lower_limit"] = tests_priority_lower_limit
|
|
413
427
|
commit_dict["tests_regexp"] = tests_regexp
|
|
414
428
|
commit_dict["tests_groups_regexp"] = tests_groups_regexp
|
|
429
|
+
commit_dict["github_org"] = args.gh_org
|
|
430
|
+
commit_dict["github_repo"] = args.gh_repo
|
|
431
|
+
if args.server_name is not None and args.server_name != "":
|
|
432
|
+
commit_dict["server_name"] = args.server_name
|
|
433
|
+
if args.build_artifacts != "":
|
|
434
|
+
commit_dict["build_artifacts"] = args.build_artifacts
|
|
435
|
+
if args.build_command != "":
|
|
436
|
+
commit_dict["build_command"] = args.build_command
|
|
415
437
|
if pull_request is not None:
|
|
416
438
|
logging.info(
|
|
417
439
|
f"Have a pull request info to include in build request {pull_request}"
|
|
@@ -174,6 +174,10 @@ def get_branch_version_from_test_details(testDetails):
|
|
|
174
174
|
git_branch = git_branch.decode()
|
|
175
175
|
if git_branch.startswith("/refs/heads/"):
|
|
176
176
|
git_branch = git_branch.replace("/refs/heads/", "")
|
|
177
|
+
if git_branch.startswith("refs/heads/"):
|
|
178
|
+
git_branch = git_branch.replace("refs/heads/", "")
|
|
179
|
+
if git_branch.startswith("/"):
|
|
180
|
+
git_branch = git_branch[1:]
|
|
177
181
|
if git_version is not None:
|
|
178
182
|
if type(git_version) == bytes:
|
|
179
183
|
git_version = git_version.decode()
|
|
@@ -150,7 +150,7 @@ def exporter_datasink_common(
|
|
|
150
150
|
git_hash=None,
|
|
151
151
|
):
|
|
152
152
|
logging.info(
|
|
153
|
-
f"Using datapoint_time_ms: {datapoint_time_ms}.
|
|
153
|
+
f"Using datapoint_time_ms: {datapoint_time_ms}. git_hash={git_hash}, git_branch={git_branch}, git_version={git_version}. gh_org={tf_github_org}, gh_repo={tf_github_repo}"
|
|
154
154
|
)
|
|
155
155
|
timeseries_test_sucess_flow(
|
|
156
156
|
datasink_push_results_redistimeseries,
|
|
@@ -92,11 +92,19 @@ def create_compare_arguments(parser):
|
|
|
92
92
|
)
|
|
93
93
|
parser.add_argument("--baseline-branch", type=str, default=None, required=False)
|
|
94
94
|
parser.add_argument("--baseline-tag", type=str, default=None, required=False)
|
|
95
|
+
parser.add_argument("--baseline-hash", type=str, default=None, required=False)
|
|
95
96
|
parser.add_argument(
|
|
96
97
|
"--baseline-target-version", type=str, default=None, required=False
|
|
97
98
|
)
|
|
98
99
|
parser.add_argument("--comparison-branch", type=str, default=None, required=False)
|
|
100
|
+
parser.add_argument(
|
|
101
|
+
"--baseline-github-repo", type=str, default="redis", required=False
|
|
102
|
+
)
|
|
103
|
+
parser.add_argument(
|
|
104
|
+
"--comparison-github-repo", type=str, default="redis", required=False
|
|
105
|
+
)
|
|
99
106
|
parser.add_argument("--comparison-tag", type=str, default=None, required=False)
|
|
107
|
+
parser.add_argument("--comparison-hash", type=str, default=None, required=False)
|
|
100
108
|
parser.add_argument(
|
|
101
109
|
"--comparison-target-version", type=str, default=None, required=False
|
|
102
110
|
)
|
|
@@ -250,6 +250,10 @@ def compare_command_logic(args, project_name, project_version):
|
|
|
250
250
|
running_platform = args.running_platform
|
|
251
251
|
baseline_target_version = args.baseline_target_version
|
|
252
252
|
comparison_target_version = args.comparison_target_version
|
|
253
|
+
baseline_github_repo = args.baseline_github_repo
|
|
254
|
+
comparison_github_repo = args.comparison_github_repo
|
|
255
|
+
baseline_hash = args.baseline_hash
|
|
256
|
+
comparison_hash = args.comparison_hash
|
|
253
257
|
|
|
254
258
|
if running_platform is not None:
|
|
255
259
|
logging.info(
|
|
@@ -310,6 +314,10 @@ def compare_command_logic(args, project_name, project_version):
|
|
|
310
314
|
running_platform,
|
|
311
315
|
baseline_target_version,
|
|
312
316
|
comparison_target_version,
|
|
317
|
+
baseline_hash,
|
|
318
|
+
comparison_hash,
|
|
319
|
+
baseline_github_repo,
|
|
320
|
+
comparison_github_repo,
|
|
313
321
|
)
|
|
314
322
|
prepare_regression_comment(
|
|
315
323
|
auto_approve,
|
|
@@ -535,6 +543,10 @@ def compute_regression_table(
|
|
|
535
543
|
running_platform=None,
|
|
536
544
|
baseline_target_version=None,
|
|
537
545
|
comparison_target_version=None,
|
|
546
|
+
comparison_hash=None,
|
|
547
|
+
baseline_hash=None,
|
|
548
|
+
baseline_github_repo="redis",
|
|
549
|
+
comparison_github_repo="redis",
|
|
538
550
|
):
|
|
539
551
|
START_TIME_NOW_UTC, _, _ = get_start_time_vars()
|
|
540
552
|
START_TIME_LAST_MONTH_UTC = START_TIME_NOW_UTC - datetime.timedelta(days=31)
|
|
@@ -560,6 +572,8 @@ def compute_regression_table(
|
|
|
560
572
|
comparison_tag,
|
|
561
573
|
baseline_target_version,
|
|
562
574
|
comparison_target_version,
|
|
575
|
+
comparison_hash,
|
|
576
|
+
baseline_hash,
|
|
563
577
|
)
|
|
564
578
|
logging.info(f"Using baseline filter {by_str_baseline}={baseline_str}")
|
|
565
579
|
logging.info(f"Using comparison filter {by_str_comparison}={comparison_str}")
|
|
@@ -605,6 +619,8 @@ def compute_regression_table(
|
|
|
605
619
|
total_stable,
|
|
606
620
|
total_unstable,
|
|
607
621
|
total_comparison_points,
|
|
622
|
+
regressions_list,
|
|
623
|
+
improvements_list,
|
|
608
624
|
) = from_rts_to_regression_table(
|
|
609
625
|
baseline_deployment_name,
|
|
610
626
|
comparison_deployment_name,
|
|
@@ -629,6 +645,8 @@ def compute_regression_table(
|
|
|
629
645
|
tf_triggering_env,
|
|
630
646
|
verbose,
|
|
631
647
|
running_platform,
|
|
648
|
+
baseline_github_repo,
|
|
649
|
+
comparison_github_repo,
|
|
632
650
|
)
|
|
633
651
|
logging.info(
|
|
634
652
|
"Printing differential analysis between {} and {}".format(
|
|
@@ -661,6 +679,8 @@ def compute_regression_table(
|
|
|
661
679
|
writer_regressions.dump(mystdout, False)
|
|
662
680
|
table_output += mystdout.getvalue()
|
|
663
681
|
table_output += "\n\n"
|
|
682
|
+
test_names_str = "|".join(regressions_list)
|
|
683
|
+
table_output += f"Regressions test regexp names: {test_names_str}\n\n"
|
|
664
684
|
mystdout.close()
|
|
665
685
|
sys.stdout = old_stdout
|
|
666
686
|
|
|
@@ -682,6 +702,8 @@ def compute_regression_table(
|
|
|
682
702
|
writer_regressions.dump(mystdout, False)
|
|
683
703
|
table_output += mystdout.getvalue()
|
|
684
704
|
table_output += "\n\n"
|
|
705
|
+
test_names_str = "|".join(improvements_list)
|
|
706
|
+
table_output += f"Improvements test regexp names: {test_names_str}\n\n"
|
|
685
707
|
mystdout.close()
|
|
686
708
|
sys.stdout = old_stdout
|
|
687
709
|
|
|
@@ -724,6 +746,8 @@ def get_by_strings(
|
|
|
724
746
|
comparison_tag,
|
|
725
747
|
baseline_target_version=None,
|
|
726
748
|
comparison_target_version=None,
|
|
749
|
+
baseline_hash=None,
|
|
750
|
+
comparison_hash=None,
|
|
727
751
|
):
|
|
728
752
|
baseline_covered = False
|
|
729
753
|
comparison_covered = False
|
|
@@ -760,6 +784,16 @@ def get_by_strings(
|
|
|
760
784
|
by_str_baseline = "target+version"
|
|
761
785
|
baseline_str = baseline_target_version
|
|
762
786
|
|
|
787
|
+
if baseline_hash is not None:
|
|
788
|
+
if comparison_covered:
|
|
789
|
+
logging.error(
|
|
790
|
+
"--baseline-branch, --baseline-tag, --baseline-hash, and --baseline-target-version are mutually exclusive. Pick one..."
|
|
791
|
+
)
|
|
792
|
+
exit(1)
|
|
793
|
+
baseline_covered = True
|
|
794
|
+
by_str_baseline = "hash"
|
|
795
|
+
baseline_str = baseline_hash
|
|
796
|
+
|
|
763
797
|
if comparison_tag is not None:
|
|
764
798
|
# check if we had already covered comparison
|
|
765
799
|
if comparison_covered:
|
|
@@ -781,16 +815,27 @@ def get_by_strings(
|
|
|
781
815
|
by_str_comparison = "target+version"
|
|
782
816
|
comparison_str = comparison_target_version
|
|
783
817
|
|
|
818
|
+
if comparison_hash is not None:
|
|
819
|
+
# check if we had already covered comparison
|
|
820
|
+
if comparison_covered:
|
|
821
|
+
logging.error(
|
|
822
|
+
"--comparison-branch, --comparison-tag, --comparison-hash, and --comparison-target-table are mutually exclusive. Pick one..."
|
|
823
|
+
)
|
|
824
|
+
exit(1)
|
|
825
|
+
comparison_covered = True
|
|
826
|
+
by_str_comparison = "hash"
|
|
827
|
+
comparison_str = comparison_hash
|
|
828
|
+
|
|
784
829
|
if baseline_covered is False:
|
|
785
830
|
logging.error(
|
|
786
831
|
"You need to provider either "
|
|
787
|
-
+ "( --baseline-branch, --baseline-tag, or --baseline-target-version ) "
|
|
832
|
+
+ "( --baseline-branch, --baseline-tag, --baseline-hash, or --baseline-target-version ) "
|
|
788
833
|
)
|
|
789
834
|
exit(1)
|
|
790
835
|
if comparison_covered is False:
|
|
791
836
|
logging.error(
|
|
792
837
|
"You need to provider either "
|
|
793
|
-
+ "( --comparison-branch, --comparison-tag, or --comparison-target-version ) "
|
|
838
|
+
+ "( --comparison-branch, --comparison-tag, --comparison-hash, or --comparison-target-version ) "
|
|
794
839
|
)
|
|
795
840
|
exit(1)
|
|
796
841
|
return baseline_str, by_str_baseline, comparison_str, by_str_comparison
|
|
@@ -820,6 +865,8 @@ def from_rts_to_regression_table(
|
|
|
820
865
|
tf_triggering_env,
|
|
821
866
|
verbose,
|
|
822
867
|
running_platform=None,
|
|
868
|
+
baseline_github_repo="redis",
|
|
869
|
+
comparison_github_repo="redis",
|
|
823
870
|
):
|
|
824
871
|
print_all = print_regressions_only is False and print_improvements_only is False
|
|
825
872
|
table_full = []
|
|
@@ -835,6 +882,8 @@ def from_rts_to_regression_table(
|
|
|
835
882
|
total_comparison_points = 0
|
|
836
883
|
noise_waterline = 3
|
|
837
884
|
progress = tqdm(unit="benchmark time-series", total=len(test_names))
|
|
885
|
+
regressions_list = []
|
|
886
|
+
improvements_list = []
|
|
838
887
|
for test_name in test_names:
|
|
839
888
|
compare_version = "v0.1.208"
|
|
840
889
|
github_link = "https://github.com/redis/redis-benchmarks-specification/blob"
|
|
@@ -848,6 +897,7 @@ def from_rts_to_regression_table(
|
|
|
848
897
|
"metric={}".format(metric_name),
|
|
849
898
|
"{}={}".format(test_filter, test_name),
|
|
850
899
|
"deployment_name={}".format(baseline_deployment_name),
|
|
900
|
+
"github_repo={}".format(baseline_github_repo),
|
|
851
901
|
"triggering_env={}".format(tf_triggering_env),
|
|
852
902
|
]
|
|
853
903
|
if running_platform is not None:
|
|
@@ -855,11 +905,15 @@ def from_rts_to_regression_table(
|
|
|
855
905
|
filters_comparison = [
|
|
856
906
|
"{}={}".format(by_str_comparison, comparison_str),
|
|
857
907
|
"metric={}".format(metric_name),
|
|
858
|
-
"hash==",
|
|
859
908
|
"{}={}".format(test_filter, test_name),
|
|
860
909
|
"deployment_name={}".format(comparison_deployment_name),
|
|
910
|
+
"github_repo={}".format(comparison_github_repo),
|
|
861
911
|
"triggering_env={}".format(tf_triggering_env),
|
|
862
912
|
]
|
|
913
|
+
if "hash" not in by_str_baseline:
|
|
914
|
+
filters_baseline.append("hash==")
|
|
915
|
+
if "hash" not in by_str_comparison:
|
|
916
|
+
filters_comparison.append("hash==")
|
|
863
917
|
if running_platform is not None:
|
|
864
918
|
filters_comparison.append("running_platform={}".format(running_platform))
|
|
865
919
|
baseline_timeseries = rts.ts().queryindex(filters_baseline)
|
|
@@ -1037,9 +1091,11 @@ def from_rts_to_regression_table(
|
|
|
1037
1091
|
test_link,
|
|
1038
1092
|
)
|
|
1039
1093
|
if detected_regression:
|
|
1094
|
+
regressions_list.append(test_name)
|
|
1040
1095
|
table_regressions.append(line)
|
|
1041
1096
|
|
|
1042
1097
|
if detected_improvement:
|
|
1098
|
+
improvements_list.append(test_name)
|
|
1043
1099
|
table_improvements.append(line)
|
|
1044
1100
|
|
|
1045
1101
|
if unstable:
|
|
@@ -1072,6 +1128,8 @@ def from_rts_to_regression_table(
|
|
|
1072
1128
|
total_stable,
|
|
1073
1129
|
total_unstable,
|
|
1074
1130
|
total_comparison_points,
|
|
1131
|
+
regressions_list,
|
|
1132
|
+
improvements_list,
|
|
1075
1133
|
)
|
|
1076
1134
|
|
|
1077
1135
|
|
|
@@ -547,6 +547,11 @@ def process_self_contained_coordinator_stream(
|
|
|
547
547
|
logging.info(
|
|
548
548
|
f"detected a server_name definition on the streamdata: {server_name}."
|
|
549
549
|
)
|
|
550
|
+
new_executable = f"{mnt_point}{server_name}-server"
|
|
551
|
+
logging.info(
|
|
552
|
+
"changing executable from {executable} to {new_executable}"
|
|
553
|
+
)
|
|
554
|
+
executable = new_executable
|
|
550
555
|
|
|
551
556
|
if b"restore_build_artifacts" in testDetails:
|
|
552
557
|
restore_build_artifacts = bool(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.218
|
|
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
|
|
@@ -4,23 +4,23 @@ redis_benchmarks_specification/__api__/api.py,sha256=k_CMICtMm1z8jY3hByaL0hIr_5v
|
|
|
4
4
|
redis_benchmarks_specification/__api__/app.py,sha256=JzQm84DjIVdfLbDO423BJbrds6gFzMbA0syRkHE_aUU,7063
|
|
5
5
|
redis_benchmarks_specification/__builder__/Readme.md,sha256=O6MV_J3OSgzW-ir2TbukP8Vhkm_LOzQJJndG1Cykqic,111
|
|
6
6
|
redis_benchmarks_specification/__builder__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
7
|
-
redis_benchmarks_specification/__builder__/builder.py,sha256=
|
|
7
|
+
redis_benchmarks_specification/__builder__/builder.py,sha256=T5dTB_qgX1FdPA_qQfFTHtnBL9O6w6TSI5YCKNJrxKM,27769
|
|
8
8
|
redis_benchmarks_specification/__builder__/schema.py,sha256=1wcmyVJBcWrBvK58pghN9NCoWLCO3BzPsmdKWYfkVog,584
|
|
9
9
|
redis_benchmarks_specification/__cli__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
10
|
-
redis_benchmarks_specification/__cli__/args.py,sha256=
|
|
11
|
-
redis_benchmarks_specification/__cli__/cli.py,sha256=
|
|
10
|
+
redis_benchmarks_specification/__cli__/args.py,sha256=9uP9p2hqxr60k0XjpDl0TS22d3bHYdxsVZdgrgf5dg0,7013
|
|
11
|
+
redis_benchmarks_specification/__cli__/cli.py,sha256=X5kmZoZfm85AtKNK5UoM8TeNDXWti3OIWnSguRgsylw,21363
|
|
12
12
|
redis_benchmarks_specification/__cli__/stats.py,sha256=wahzZRbpfokv8dQU8O4BH5JFrOZk-l6k8LWdKfue9_0,20204
|
|
13
13
|
redis_benchmarks_specification/__common__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
redis_benchmarks_specification/__common__/builder_schema.py,sha256=
|
|
14
|
+
redis_benchmarks_specification/__common__/builder_schema.py,sha256=kfDpRIk7NkJrb5qj9jzsBhLVNO7K_W2Clumj4pxrkG8,5938
|
|
15
15
|
redis_benchmarks_specification/__common__/env.py,sha256=kvJ8Ll-fvI_Tc0vynrzUEr22TqnJizzvJ4Lu9RjNr_M,3119
|
|
16
16
|
redis_benchmarks_specification/__common__/github.py,sha256=QEHG05DgvJXkJPMMprLa7E1fwn3PrizfR-_N3_Ff93Q,10398
|
|
17
17
|
redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--Tk6otAVIf9YR3g3KGeUpiW4,834
|
|
18
|
-
redis_benchmarks_specification/__common__/runner.py,sha256=
|
|
18
|
+
redis_benchmarks_specification/__common__/runner.py,sha256=7DBI09eu_4RibK6MwcYyIsOI0f-gmv7I-v9OOm2Y5QY,6878
|
|
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=ALkf5WuuMCDnOo4N7R2rMgDCWQjvibOsWMa0vuw-9so,5941
|
|
23
|
+
redis_benchmarks_specification/__compare__/compare.py,sha256=dKNK_Z3m29jcHvk8uQNlcHRiVdfZz7lVgVHIST9XnoU,43471
|
|
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
|
|
@@ -34,7 +34,7 @@ redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py,sha256=s
|
|
|
34
34
|
redis_benchmarks_specification/__self_contained_coordinator__/docker.py,sha256=Alf9Y1dfuOMoD4u_Dv3jTodkwZfSrlo2_YceevaWNFo,2757
|
|
35
35
|
redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py,sha256=qB1rwqkROfuyFotB7MfUQiYS4Gzafd8dd2ca7lT4l2I,2909
|
|
36
36
|
redis_benchmarks_specification/__self_contained_coordinator__/runners.py,sha256=FqVVvbXPsmq2I7pSH-JEklb1SDRdS7rG6ZHc6xTCUE0,28611
|
|
37
|
-
redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=
|
|
37
|
+
redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=xyUex4kGWFP7vWtdrPQF92Pcs2ujCsTTPmtvTUMWFPg,74733
|
|
38
38
|
redis_benchmarks_specification/__setups__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
39
|
redis_benchmarks_specification/__setups__/topologies.py,sha256=xQ1IJkcTji_ZjLiJd3vOxZpvbNtBLZw9cPkw5hGJKHU,481
|
|
40
40
|
redis_benchmarks_specification/__spec__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
@@ -152,8 +152,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entr
|
|
|
152
152
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml,sha256=Z6T75dIbjRb4YO1tFIV9K4S_KFzRHfAa4q3kOg0vcHw,1112
|
|
153
153
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml,sha256=XAIFlbR6VJnmQRwedLGBGenbIsMC_I3uA35Mz_bkTTc,1028
|
|
154
154
|
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.
|
|
155
|
+
redis_benchmarks_specification-0.1.218.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
156
|
+
redis_benchmarks_specification-0.1.218.dist-info/METADATA,sha256=l6BIPB7AZsKbBtP2csaOHRBJuJIF9EtgDPyNLmd4TCI,22726
|
|
157
|
+
redis_benchmarks_specification-0.1.218.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
158
|
+
redis_benchmarks_specification-0.1.218.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
159
|
+
redis_benchmarks_specification-0.1.218.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|