-
Notifications
You must be signed in to change notification settings - Fork 181
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 8e5688d
- Loading branch information
github-action-benchmark
committed
Oct 27, 2023
1 parent
fe0471b
commit cde9b2c
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": "Monthon Klongklaew", | ||
"username": "monthonk" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": false, | ||
"id": "7e9471129f456ee47b2563b009e611688f94a66b", | ||
"message": "Refactor signing configuration (#545)\n\nSigned-off-by: Monthon Klongklaew <[email protected]>", | ||
"timestamp": "2023-10-16T22:29:45Z", | ||
"tree_id": "723ea808ebf4bb0d4f87afe83be35cb0aea4497f", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/7e9471129f456ee47b2563b009e611688f94a66b" | ||
}, | ||
"date": 1697508152023, | ||
"tool": "customBiggerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "random_read_four_threads_direct_io", | ||
"value": 21.07978515625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_direct_io_small_file", | ||
"value": 35.62607421875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads", | ||
"value": 11.7162109375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_small_file", | ||
"value": 31.75380859375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io", | ||
"value": 2.31396484375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io_small_file", | ||
"value": 4.6853515625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read", | ||
"value": 3.6533203125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_small_file", | ||
"value": 4.62333984375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io", | ||
"value": 4672.9701171875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io_small_file", | ||
"value": 199.6978515625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads", | ||
"value": 7.64755859375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_small_file", | ||
"value": 8.80673828125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io", | ||
"value": 1339.46396484375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io_small_file", | ||
"value": 33.745703125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read", | ||
"value": 479.406640625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_small_file", | ||
"value": 30.362890625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write_direct_io", | ||
"value": 1243.5830078125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write", | ||
"value": 949.60908203125, | ||
"unit": "MiB/s" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
|
@@ -2280,9 +2166,123 @@ window.BENCHMARK_DATA = { | |
"unit": "MiB/s" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "James Bornholt", | ||
"username": "jamesbornholt" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": true, | ||
"id": "8e5688dc45f5a76d145d03a859ad0160a12e43c8", | ||
"message": "Allow repeated readdir offsets (#581)\n\n* Allow repeated readdir offsets\n\nPOSIX allows seeking an open directory handle, which in FUSE means the\n`offset` can be any offset we've previously returned. This is pretty\nannoying for us to implement since we're streaming directory entries\nfrom S3 with ListObjects, which can't resume from an arbitrary index,\nand can't fit its continuation tokens into a 64-bit offset anyway. So\nwe're probably never going to truly support seeking a directory handle.\n\nBut there's a special case we've seen come up a couple of times (#477, #520):\nsome applications read one page of directory entries and then seek back\nto 0 and do it again. I don't fully understand _why_ they do this, but\nit's common enough that it's worth special casing.\n\nThis change makes open directory handles remember their most recent\nresponse so that they can repeat it if asked for the same offset again.\nIt's not too complicated other than needing to make sure we do\nreaddirplus correctly (managing the lookup counts for entries that are\nbeing returned a second time).\n\nI've tested this by running the PHP example from #477, which now works.\n\nSigned-off-by: James Bornholt <[email protected]>\n\n* PR feedback\n\nSigned-off-by: James Bornholt <[email protected]>\n\n* Changelog and docs\n\nSigned-off-by: James Bornholt <[email protected]>\n\n---------\n\nSigned-off-by: James Bornholt <[email protected]>", | ||
"timestamp": "2023-10-27T15:02:35Z", | ||
"tree_id": "0a00dc019105785c874c199e01518a49c7a52e28", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/8e5688dc45f5a76d145d03a859ad0160a12e43c8" | ||
}, | ||
"date": 1698447281687, | ||
"tool": "customBiggerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "random_read_four_threads_direct_io", | ||
"value": 12.82734375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_direct_io_small_file", | ||
"value": 39.07197265625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads", | ||
"value": 7.50205078125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_four_threads_small_file", | ||
"value": 44.73427734375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io", | ||
"value": 1.2796875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_direct_io_small_file", | ||
"value": 6.24462890625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read", | ||
"value": 1.34541015625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "random_read_small_file", | ||
"value": 6.07060546875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io", | ||
"value": 4692.309765625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_direct_io_small_file", | ||
"value": 208.1734375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads", | ||
"value": 103.72119140625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_four_threads_small_file", | ||
"value": 45.848046875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io", | ||
"value": 1242.4923828125, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_direct_io_small_file", | ||
"value": 34.113671875, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read", | ||
"value": 1164.64072265625, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_read_small_file", | ||
"value": 35.59443359375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write_direct_io", | ||
"value": 1351.34599609375, | ||
"unit": "MiB/s" | ||
}, | ||
{ | ||
"name": "sequential_write", | ||
"value": 992.14716796875, | ||
"unit": "MiB/s" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"lastUpdate": 1698431688646, | ||
"lastUpdate": 1698447282178, | ||
"repoUrl": "https://github.com/awslabs/mountpoint-s3" | ||
} |