-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Latency Benchmark (S3 Express One Zone) (customSmallerIsBetter) b…
…enchmark result for 602f371
- Loading branch information
github-action-benchmark
committed
Dec 17, 2024
1 parent
167592b
commit b64b4eb
Showing
1 changed file
with
60 additions
and
55 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,62 +1,8 @@ | ||
window.BENCHMARK_DATA = { | ||
"lastUpdate": 1734452171751, | ||
"lastUpdate": 1734456114896, | ||
"repoUrl": "https://github.com/awslabs/mountpoint-s3", | ||
"entries": { | ||
"Latency Benchmark (S3 Express One Zone)": [ | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Alessandro Passaro", | ||
"username": "passaro" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"name": "GitHub", | ||
"username": "web-flow" | ||
}, | ||
"distinct": true, | ||
"id": "54b57c47df1fe38296267495f3820260a6b72775", | ||
"message": "Merge AppendUploader into Uploader (#1172)\n\nInternal refactor to merge the `AppendUploader` for incremental uploads\ninto the existing `Uploader`.\n\n### Does this change impact existing behavior?\n\nNo.\n\n### Does this change need a changelog entry?\n\nNo.\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 <[email protected]>", | ||
"timestamp": "2024-11-29T15:02:02Z", | ||
"tree_id": "948984450c148893795a5b131a77a36e4cff8d4c", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/54b57c47df1fe38296267495f3820260a6b72775" | ||
}, | ||
"date": 1732894039861, | ||
"tool": "customSmallerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "readdir_100", | ||
"value": 0.041, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_1000", | ||
"value": 0.176, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_10000", | ||
"value": 0.883, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_100000", | ||
"value": 8.668, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "time_to_first_byte_read", | ||
"value": 1.2765444, | ||
"unit": "milliseconds" | ||
}, | ||
{ | ||
"name": "time_to_first_byte_read_small_file", | ||
"value": 5.7005563, | ||
"unit": "milliseconds" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
|
@@ -1102,6 +1048,65 @@ window.BENCHMARK_DATA = { | |
"unit": "milliseconds" | ||
} | ||
] | ||
}, | ||
{ | ||
"commit": { | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Burak Varlı", | ||
"username": "unexge" | ||
}, | ||
"committer": { | ||
"email": "[email protected]", | ||
"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 <[email protected]>\nSigned-off-by: Burak Varlı <[email protected]>\nSigned-off-by: Burak Varlı <[email protected]>\nSigned-off-by: Daniel Carl Jones <[email protected]>\nSigned-off-by: Daniel Carl Jones <[email protected]>\nCo-authored-by: Daniel Carl Jones <[email protected]>\nCo-authored-by: Daniel Carl Jones <[email protected]>", | ||
"timestamp": "2024-12-17T16:56:59Z", | ||
"tree_id": "1a210e077e88bc40a945a0b79f33981f0461f3fe", | ||
"url": "https://github.com/awslabs/mountpoint-s3/commit/602f371ff81ec89de5e6067fc09b7b7825d783ee" | ||
}, | ||
"date": 1734456114246, | ||
"tool": "customSmallerIsBetter", | ||
"benches": [ | ||
{ | ||
"name": "readdir_100", | ||
"value": 0.038, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_1000", | ||
"value": 0.18, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_10000", | ||
"value": 0.974, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "readdir_100000", | ||
"value": 9.25, | ||
"unit": "seconds" | ||
}, | ||
{ | ||
"name": "time_to_write_one_byte_file", | ||
"value": 8.8613176, | ||
"unit": "milliseconds" | ||
}, | ||
{ | ||
"name": "time_to_first_byte_read", | ||
"value": 1.4161622, | ||
"unit": "milliseconds" | ||
}, | ||
{ | ||
"name": "time_to_first_byte_read_small_file", | ||
"value": 5.8557321, | ||
"unit": "milliseconds" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
|