-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYNPY-1320] Upload benchmark + Documentation (#1012)
* Benchmarking synapse with a py script and adding onto our documentation
- Loading branch information
1 parent
acbcf52
commit fc865fd
Showing
12 changed files
with
1,031 additions
and
538 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
***************** | ||
Benchmarking | ||
***************** | ||
|
||
Periodically we will be publishing results of benchmarking the Synapse Python Client | ||
compared to directly working with AWS S3. The purpose of these benchmarks is to make | ||
data driven decisions on where to spend time optimizing the client. Additionally, it will | ||
give us a way to measure the impact of changes to the client. | ||
|
||
=================== | ||
Results | ||
=================== | ||
|
||
|
||
11/14/2023 | ||
========================== | ||
The results were created on a `t3a.micro` EC2 instance with a 200GB disk size running in us-east-1. | ||
The script that was run can be found in `docs/scripts`. The time to create the files on disk is not included. | ||
|
||
|
||
+---------------------------+-------------------+---------------------+---------+---------------+ | ||
| Test | Synapseutils Sync | os.walk + syn.store | S3 Sync | Per file size | | ||
+===========================+===================+=====================+=========+===============+ | ||
| 25 Files 1MB total size | 10.43s | 8.99s | 1.83s | 40KB | | ||
+---------------------------+-------------------+---------------------+---------+---------------+ | ||
| 775 Files 10MB total size | 243.57s | 257.27s | 7.64s | 12.9KB | | ||
+---------------------------+-------------------+---------------------+---------+---------------+ | ||
| 10 Files 1GB total size | 27.18s | 33.73s | 16.31s | 100MB | | ||
+---------------------------+-------------------+---------------------+---------+---------------+ | ||
| 10 Files 100GB total size | 3211s | 3047s | 3245s | 10GB | | ||
+---------------------------+-------------------+---------------------+---------+---------------+ |
Oops, something went wrong.