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

  • SEARCH
  • Home
  • 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 129145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:44:46+00:00 2026-05-11T05:44:46+00:00

I have some database table and need to process records from it 5 at

  • 0

I have some database table and need to process records from it 5 at a time as long as app is running. So, it looks like this:

  1. Get a record that hasn’t been processed yet or not processing now by other threads.
  2. Process it (this is a long process that depends on internet connection so it could timeout/throw errors).
  3. Move to the next record. When reached end of table start from beginning.

I don’t have much experience with threads, so I see two possible strategies:

Approach A.

1.Create new ExecutorService:

ExecutorService taskExecutor = Executors.newFixedThreadPool(5); 

2.Add 5 tasks to it:

for (int i = 0; i < 5; i++) {     taskExecutor.execute(new MyTask()); } 

3.Each task will be infinite loop, that: reads a record from the table, processes it, and then gets another record.

The problems with this approach is how to inform other threads about which records are currenly processing. To do this I can either use ‘status’ field in the table or just use some CopyOnWriteArraySet that holds currently processing ID’s.

Approach B.

1.Create the same ExecutorService:

ExecutorService taskExecutor = Executors.newFixedThreadPool(5); 

2. Have an infinite loop that selects records that need to be processed and passes them to the executor:

while (true) {     //get next record here     taskExecutor.execute(new MyTask(record));     //monitor the queue and wait until some thread is done processing,     //so I can add another record } 

3.Each task processes a single record.

The problem with this approach is that I need to add tasks to the executor’s queue slower than they are processed to not let them pile up over time. It means I need to monitor not only which tasks are currently running but also when they are done processing, so I can add new records to the queue.

Personally I think first approach is better (easier), but I feel that the second one is more correct. What do you think? Or maybe I should do something completely different?

Also I can use Spring or Quartz libraries for this if needed.

Thanks.

  • 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. 2026-05-11T05:44:46+00:00Added an answer on May 11, 2026 at 5:44 am

    I think that CompletionService (and ExecutorCompletionService) can help you.

    You submit all your tasks via completion service, and it allows you to wait until one of thread (any thread) finishes its task. This way you can submit next task as soon as there is free thread. This would imply that you use approach B.

    Pseudo code:

    Create ThreadPoolExecutor and ExecutorCompletionService wrapping it  while (true) {   int freeThreads = executor.getMaximumPoolSize() - executor.getActiveCount()   fetch 'freeThreads' tasks and submit to completion service (which                                       in turn sends it to executor)    wait until completion service reports finished task (with timeout) } 

    Timeout in wait helps you to avoid situation when there was no task in the queue, so all threads are idle, and you are waiting until one of them finishes — which would never happen.

    You can check for number of free threads via ThreadPoolExecutor methods: getActiveCount (active threads) and getMaximumPoolSize (max available configured threads). You will need to create ThreadPoolExecutor directly, or to cast object returned from Executors.newFixedThreadPool(), although I would prefer direct creation… see source of Executors.newFixedThreadPool() method for details.

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

Sidebar

Ask A Question

Stats

  • Questions 90k
  • Answers 90k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Depending on what platforms you want to support and on… May 11, 2026 at 6:02 pm
  • Editorial Team
    Editorial Team added an answer I'm not a hundred percent sure I understand your question,… May 11, 2026 at 6:02 pm
  • Editorial Team
    Editorial Team added an answer How about this: $str = 'a:2:{i:0;s:1:"1";i:1;s:1:"2";}'; print_r(array_values(unserialize($str))); Not a regex,… May 11, 2026 at 6:02 pm

Related Questions

I have 2 batch programs, 1 is a program that sends email and another
In my database, I have a few columns in one of my tables that
Hi I'm working a project where we need to process several xml files once
We are in the process of porting a legacy system to .NET, both to

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.