Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 534997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:40:13+00:00 2026-05-13T09:40:13+00:00

I am uploading files to s3 using amazons s3 web service. It takes about

  • 0

I am uploading files to s3 using amazons s3 web service.

It takes about 1 second per file, is there a way I could fire up multiple threads to do this in parallel?

Say I have a method that does the upload call:

public void uploadToS3(string filename);

how can I call fire up 3 threads and each make this call?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:40:14+00:00Added an answer on May 13, 2026 at 9:40 am

    Wrap your function in a Runnable interface

    public Runnable getS3UploadTask () {
       return new Runnable() {
           public void run() {
               uploadToS3();
           }
       };
    }
    

    and, then you can create as many threads as you please to execute the Runnable:

    public void startS3Tasks(int workerCnt) {
        for(int i=0; i<workerCnt; i++) {
           new Thread(getS3UploadTask()).start();
        }
    }
    

    [Edit: of course, the above is only addressing your issue of “how to” and may be entirely irrelevant to the goal of improving uploads ;)]

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When uploading files to a web server using HTTP post, are there any restrictions
Hi am using apache commons upload for uploading files File file=this.getFile();//getter method for the
I working on adding file uploading to my web application. I'm using an iframe
I have found this great tutorial, about uploading files with a Flex app, using
I have a plugin for uploading files using jquery uploadify. After calling a method
What are best practices for uploading files using PHP to ensure that a database
I've succeeded in uploading files to folders on my server using codeigniter along with
I'm using the component rich:fileUpload for uploading files to my server the problem is
I used this example (http://reecon.wordpress.com/2010/04/25/uploading-files-to-http-server-using-post-android-sdk/) to upload file from android device to server, it
Let's say I need to upload files to a server programmatically using uploading a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.