From 6d68643d5cd63a8c775e2a6995a65c3a9307b5b7 Mon Sep 17 00:00:00 2001 From: github-action-benchmark Date: Mon, 20 Jan 2025 14:34:52 +0000 Subject: [PATCH] add Latency Benchmark (S3 Standard) (customSmallerIsBetter) benchmark result for 228d598ff46830e56f19be1c4d3c85069d6321b3 --- dev/latency_bench/data.js | 125 ++++++++++++++++++++------------------ 1 file changed, 65 insertions(+), 60 deletions(-) diff --git a/dev/latency_bench/data.js b/dev/latency_bench/data.js index dccbb580e..3eb95bc2f 100644 --- a/dev/latency_bench/data.js +++ b/dev/latency_bench/data.js @@ -1,67 +1,8 @@ window.BENCHMARK_DATA = { - "lastUpdate": 1737114458802, + "lastUpdate": 1737383692608, "repoUrl": "https://github.com/awslabs/mountpoint-s3", "entries": { "Latency Benchmark (S3 Standard)": [ - { - "commit": { - "author": { - "email": "burakvar@amazon.co.uk", - "name": "Burak Varlı", - "username": "unexge" - }, - "committer": { - "email": "noreply@github.com", - "name": "GitHub", - "username": "web-flow" - }, - "distinct": true, - "id": "602f371ff81ec89de5e6067fc09b7b7825d783ee", - "message": "Add support for passing FUSE file descriptors as mount point (#1103)\n\n## Description of change\n\nfuser v0.15.0 added support for creating a `Session` from existing FUSE\nfile descriptor (via `Session::from_fd`). This PR adds this support to\nMountpoint. It allows passing FUSE file descriptor as mount point in the\nform of `/dev/fd/{fd}`.\n\nAn example usage of this feature can be seen with a helper Go script,\n[mounthelper.go](https://github.com/awslabs/mountpoint-s3/blob/86bdefa5147a7edc533a6be5d2724fec74ba91fb/examples/fuse-fd-mount-point/mounthelper.go):\n\n```bash\n$ go build mounthelper.go\n$ sudo /sbin/setcap 'cap_sys_admin=ep' ./mounthelper # `mount` syscall requires `CAP_SYS_ADMIN`, alternatively, `mounthelper` can be run as root\n$ ./mounthelper -mountpoint /tmp/mountpoint -bucket bucketname\nbucket bucketname is mounted at /dev/fd/3\n2024/11/07 17:23:42 Filesystem mounted, waiting for ctrl+c signal to terminate \n\n$ # in a different terminal session\n$ echo \"Hello at `date`\" > /tmp/mountpoint/helloworld\n$ cat /tmp/mountpoint/helloworld\nHello at Thu Nov 7 17:32:33 UTC 2024\n$ rm /tmp/mountpoint/helloworld\n$ cat /tmp/mountpoint/helloworld\ncat: /tmp/mountpoint/helloworld: No such file or directory\n```\n\nRelevant issues: This PR resurrects a previous PR to add this feature:\nhttps://github.com/awslabs/mountpoint-s3/pull/537\n\n## Does this change impact existing behavior?\n\nShouldn't affect any existing behavior as we had an “is directory?”\ncheck for passed mount points before, and it shouldn't have been\npossible to pass a file descriptor as a mount point prior to this\nchange.\n\n## Does this change need a changelog entry in any of the crates?\n\nUpdated CHANGELOG for `mountpoint-s3`.\n\n---\n\nBy submitting this pull request, I confirm that my contribution is made\nunder the terms of the Apache 2.0 license and I agree to the terms of\nthe [Developer Certificate of Origin\n(DCO)](https://developercertificate.org/).\n\n---------\n\nSigned-off-by: Burak Varli \nSigned-off-by: Burak Varlı \nSigned-off-by: Burak Varlı \nSigned-off-by: Daniel Carl Jones \nSigned-off-by: Daniel Carl Jones \nCo-authored-by: Daniel Carl Jones \nCo-authored-by: Daniel Carl Jones ", - "timestamp": "2024-12-17T16:56:59Z", - "tree_id": "1a210e077e88bc40a945a0b79f33981f0461f3fe", - "url": "https://github.com/awslabs/mountpoint-s3/commit/602f371ff81ec89de5e6067fc09b7b7825d783ee" - }, - "date": 1734456037731, - "tool": "customSmallerIsBetter", - "benches": [ - { - "name": "readdir_100", - "value": 0.051, - "unit": "seconds" - }, - { - "name": "readdir_1000", - "value": 0.151, - "unit": "seconds" - }, - { - "name": "readdir_10000", - "value": 0.96, - "unit": "seconds" - }, - { - "name": "readdir_100000", - "value": 8.382, - "unit": "seconds" - }, - { - "name": "time_to_write_one_byte_file", - "value": 24.221566199999998, - "unit": "milliseconds" - }, - { - "name": "time_to_first_byte_read", - "value": 15.926657, - "unit": "milliseconds" - }, - { - "name": "time_to_first_byte_read_small_file", - "value": 22.0707454, - "unit": "milliseconds" - } - ] - }, { "commit": { "author": { @@ -1212,6 +1153,70 @@ window.BENCHMARK_DATA = { "unit": "milliseconds" } ] + }, + { + "commit": { + "author": { + "email": "alexpax@amazon.co.uk", + "name": "Alessandro Passaro", + "username": "passaro" + }, + "committer": { + "email": "noreply@github.com", + "name": "GitHub", + "username": "web-flow" + }, + "distinct": true, + "id": "228d598ff46830e56f19be1c4d3c85069d6321b3", + "message": "Publish client crates (#1237)\n\nUpdate changelogs for the client crates to prepare for publication. \n\n### Does this change impact existing behavior?\n\nN/A\n\n### Does this change need a changelog entry? Does it require a version\nchange?\n\nN/A\n\n---\n\nBy submitting this pull request, I confirm that my contribution is made\nunder the terms of the Apache 2.0 license and I agree to the terms of\nthe [Developer Certificate of Origin\n(DCO)](https://developercertificate.org/).\n\n---------\n\nSigned-off-by: Alessandro Passaro ", + "timestamp": "2025-01-20T14:07:56Z", + "tree_id": "3581193e2c158506008c692ca1658a1118846022", + "url": "https://github.com/awslabs/mountpoint-s3/commit/228d598ff46830e56f19be1c4d3c85069d6321b3" + }, + "date": 1737383691924, + "tool": "customSmallerIsBetter", + "benches": [ + { + "name": "One Byte File Creation - Average Total Latency", + "value": 223.71501907, + "unit": "milliseconds" + }, + { + "name": "readdir_100", + "value": 0.052, + "unit": "seconds" + }, + { + "name": "readdir_1000", + "value": 0.15, + "unit": "seconds" + }, + { + "name": "readdir_10000", + "value": 0.923, + "unit": "seconds" + }, + { + "name": "readdir_100000", + "value": 8.331, + "unit": "seconds" + }, + { + "name": "time_to_write_one_byte_file", + "value": 26.5017894, + "unit": "milliseconds" + }, + { + "name": "time_to_first_byte_read", + "value": 19.699974, + "unit": "milliseconds" + }, + { + "name": "time_to_first_byte_read_small_file", + "value": 21.9717996, + "unit": "milliseconds" + } + ] } ] }