-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Huge download number from Amazon Linux 1 #4278
Comments
It seems very strange. I suspect these huge downloads are from AWS itself or very large company's system. |
I found "CloudWatch Logs Agent" downgrade pip to 6.1.1 and install awscli !
I ran this query on BigQuery: SELECT
details.system.release,
COUNT(*) AS cnt
FROM
[the-psf:pypi.downloads20190709]
WHERE
file.project = "pip"
AND file.version = "6.1.1"
AND details.implementation.version = "2.7.16"
GROUP BY
details.system.release
ORDER BY
cnt DESC Result:
Bingo! About 200k DL! |
I created a pull request to update the doc to use standalone mode. But many users use online install in their UserData already. |
Thanks for digging into this so much. I have raised this internally with the CloudWatch Logs team. |
FWIW, download number of awscli is stil huge even though excluding downloads from
So bundled installer is much better than pip for regular sys admins. |
A gentle ping on this. Any updates? |
Pinging again, to see if folks are interested in taking this forward. |
May I write a patch for |
I found https://s3.amazonaws.com/aws-cloudwatch/downloads/latest/awslogs-agent-setup.py is updated to download dependencies frorm 'https://s3.amazonaws.com/aws-cloudwatch/downloads/latest/AgentDependencies.tar.gz'. I will close this issue after in this week, after I confirm the PyPIStats. |
I found there are still huge download from pip 6.1.1. query:
Result:
|
Regarding pypistats, awscli and its dependencies are the most downloaded packages. I try to investigate who downloads awscli from PyPI so much.
I found a very interesting result. It seems awscli is downloaded from Amazon Linux 1 much.
I suspect that this huge number of downloads are from not regular EC2 user because:
I'm sorry if I am wrong, but could you confirm some service in AWS based on Amazon Linux 1 do
pip install awscli
from very old pip (6.1.1), about 200k times/day?The text was updated successfully, but these errors were encountered: