-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Benchmark (customBiggerIsBetter) benchmark result for 9db1d24
- Loading branch information
github-action-benchmark
committed
Oct 17, 2023
1 parent
11708c4
commit 95ddf8b
Showing
1 changed file
with
115 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,120 +1,6 @@ | ||
window.BENCHMARK_DATA = { | ||
"entries": { | ||
"Benchmark": [ | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "James Bornholt", | ||
"username": "jamesbornholt" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": false, | ||
"id": "5e8d834c2df2269d2f8670f38bc3c764d10a90f7", | ||
"message": "Close input/output handles when running in background (#489)\n\nWhen we run in background mode, the child process inherits the\nstdin/stdout/stderr of the parent. That's good because we can print\nmount errors from the child and have them reach the parent. But once\nwe're mounted and the parent exits, the child still holds onto those\nhandles. This is bad if those handles are pipes, which are often used\nwhen trying to launch a daemon (e.g. Python subprocess.check_output). In\nthat case, the pipes will never close and the caller will keep waiting\nfor output on them forever.\n\nWe need to close these handles once we're successfully daemonized. This\nwill prevent us from seeing anything the process prints after they're\nclosed, but from that point we should be logging anyway, so shouldn't be\nprinting. Printing still works (doesn't panic or anything), just doesn't\ngo anywhere.\n\nWith this change, a Python script like\n\n import subprocess\n subprocess.check_output(['mount-s3', 'doc-example-bucket', '/bucket'])\n\nworks correctly: once the mount has succeeded, it returns. Without this\nchange, this program blocks until the bucket is unmounted.\n\nSigned-off-by: James Bornholt <[email protected]>", | ||
"timestamp": "2023-08-31T12:42:20Z", | ||
"tree_id": "4b2c3032f1df614a94637e0d1e1aa4b45ca30025", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/5e8d834c2df2269d2f8670f38bc3c764d10a90f7" | ||
}, | ||
"date": 1693498673265, | ||
"tool": "customBiggerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "random_read_four_threads_direct_io", | ||
"value": 17.38466796875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_direct_io_small_file", | ||
"value": 32.182421875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads", | ||
"value": 10.60908203125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_small_file", | ||
"value": 32.03662109375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io", | ||
"value": 1.84404296875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io_small_file", | ||
"value": 5.12763671875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read", | ||
"value": 1.76787109375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_small_file", | ||
"value": 5.17626953125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io", | ||
"value": 5857.12275390625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io_small_file", | ||
"value": 199.610546875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads", | ||
"value": 7.25576171875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_small_file", | ||
"value": 7.7298828125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io", | ||
"value": 1607.9736328125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io_small_file", | ||
"value": 34.92900390625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read", | ||
"value": 775.72763671875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_small_file", | ||
"value": 35.25712890625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write_direct_io", | ||
"value": 1456.47353515625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write", | ||
"value": 919.5814453125, | ||
"unit": "MiB/s" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
|
@@ -2280,9 +2166,123 @@ window.BENCHMARK_DATA = { | |
"unit": "MiB/s" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Ankit Saurabh", | ||
"username": "sauraank" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": true, | ||
"id": "9db1d24904173d720ab2a79dd3549d502032bf43", | ||
"message": "Improve the instructions to add benchmark files manually (#543)\n\n* Improved the instructions to add benchmark files manually in doc/BENCHMARKING.md\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Added all the steps for creating benchmark files\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Corrected job name\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Removed filename argument to create directory\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* corrected the recommendations\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Added mount-dir variable\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Corrected the ordering\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n* Removed unnecessary space\n\nSigned-off-by: Ankit Saurabh <[email protected]>\n\n---------\n\nSigned-off-by: Ankit Saurabh <[email protected]>", | ||
"timestamp": "2023-10-16T20:35:13Z", | ||
"tree_id": "0c90ff1efcdaaa4b24c6f1d2a0ac44073a7a5bea", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/9db1d24904173d720ab2a79dd3549d502032bf43" | ||
}, | ||
"date": 1697501367205, | ||
"tool": "customBiggerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "random_read_four_threads_direct_io", | ||
"value": 14.96015625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_direct_io_small_file", | ||
"value": 32.61767578125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads", | ||
"value": 9.00087890625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_small_file", | ||
"value": 30.18046875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io", | ||
"value": 1.91357421875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io_small_file", | ||
"value": 4.671484375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read", | ||
"value": 1.4611328125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_small_file", | ||
"value": 4.9755859375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io", | ||
"value": 4755.42998046875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io_small_file", | ||
"value": 211.98310546875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads", | ||
"value": 9.118359375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_small_file", | ||
"value": 9.0595703125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io", | ||
"value": 1385.921875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io_small_file", | ||
"value": 36.159765625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read", | ||
"value": 886.384765625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_small_file", | ||
"value": 35.25849609375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write_direct_io", | ||
"value": 1454.84521484375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write", | ||
"value": 901.43916015625, | ||
"unit": "MiB/s" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"lastUpdate": 1696526674892, | ||
"lastUpdate": 1697501367695, | ||
"repoUrl": "https://github.com/awslabs/mountpoint-s3" | ||
} |