Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

174
Views
Amazon EC2 -> S3 traffic limit

My Amazon EC2 (Windows / t2.Large) server uploads ~200K files to S3 (bucket is in the same region as the server). After a few hours of ~100 files a minute the upload slows down to ~30 files a minute with no obvious reason. Pausing the process for a few hours will make it go fast again. Does Amazon put a limit on this traffic? Any other reason for the speed loss?

Here is my upload code:

        string S3_KEY = S3TargetFileName;

        S3_KEY = S3FolderName + "/" + S3_KEY;

        S3_KEY = S3_KEY.ToLower();
        PutObjectRequest request = new PutObjectRequest()
        {
            CannedACL = S3CannedACL.PublicRead,
            BucketName = BucketName,
            Key = S3_KEY,
            FilePath = LocalFullPath
        };
        var client = GetS3Client();
        client.PutObject(request);
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You have probably run out of CPU credits for your instance. The T2 instances are Burstable Performance Instances. Once your CPU credits are depleted, you will experience a slowdown.

You can see your CPU Credit Balance from the EC2 console (select your instance, then go to the Monitoring tab). It should probably near zero now.

For sustained workloads that should not be slowed down, you should switch to a different family of instances that are not burstable (e.g. the M4 family).

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!