-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bug] get_object() is very slow and takes 100% cpu #402
Comments
In comparison, downloading all 10 files on the same machine with $ time for i in $(seq 1 10); do echo $i; mc cat myminio/dummy/dummy-${i}M > /dev/null; done
1
2
3
4
5
6
7
8
9
10
real 0m0.234s
user 0m0.104s
sys 0m0.088s |
Looks like the problem is in reading
|
harshavardhana
added a commit
to harshavardhana/minio-py
that referenced
this issue
Sep 7, 2016
harshavardhana
added a commit
to harshavardhana/minio-py
that referenced
this issue
Sep 7, 2016
harshavardhana
added a commit
to harshavardhana/minio-py
that referenced
this issue
Sep 7, 2016
harshavardhana
added a commit
that referenced
this issue
Sep 7, 2016
👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I created 10 files with sizes 1MB, 2MB, ..., 10MB and put it on minio server with version (master branch, latest at time of writing this):
Then, used the following Python script to download these files and to time them:
The minio server is running locally.
The output is:
While running the script, the python interpreter is at 100% CPU constantly.
Python version:
The text was updated successfully, but these errors were encountered: