Multi-threading with CachedThreadPool












0















I have server-client communication architecture where there is one server and 150 clients The server-client communication happens via java NIO where all the clients send some or the other data every 10 seconds. Previously we used to queue all the process messages and process all those in a single thread, as the number of clients are more so as the messages, server is not able to process all the messages instantly and there is a delay in processing in turn data loss. So i have thought of implementing CachecThreadPool to process the tasks simultaneously as soon as they come, i have picked CachedThreadPool over FixedThreadPool because the tasks are short lived and many in number, below is the code for that. The thread which receives messages from client calls ProcessorClass.processData(message) as soon as it receives the message.



public class ProcessorClass{

private static final Logger LOGGER = Logger.getLogger(ProcessorClass.class);
static ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool();

public static void processData(StringBuffer message) {
Runnable task = new Runnable() {
@Override
public void run() {
try {
LOGGER.info("Queue size:"+executor.getQueue().size());
if (message != null){
processMessage(message);
}
}
catch(Exception e) {
LOGGER.error("Error happened in run() method" + e.getMessage());
}

}
};
executor.execute(task);
}
public static void processMessage(StringBuffer message){
// all the processing of message such as DB operations goes here.
}
}


Doubts:



1.How CachedThreadPool stores the message in the queue because i haven't defined any explicitly.
2.Should i chose FixedThreadPool over this?
3.Should i make my processMessage() method synchronized?


All the suggestions and review comments are welcome.










share|improve this question



























    0















    I have server-client communication architecture where there is one server and 150 clients The server-client communication happens via java NIO where all the clients send some or the other data every 10 seconds. Previously we used to queue all the process messages and process all those in a single thread, as the number of clients are more so as the messages, server is not able to process all the messages instantly and there is a delay in processing in turn data loss. So i have thought of implementing CachecThreadPool to process the tasks simultaneously as soon as they come, i have picked CachedThreadPool over FixedThreadPool because the tasks are short lived and many in number, below is the code for that. The thread which receives messages from client calls ProcessorClass.processData(message) as soon as it receives the message.



    public class ProcessorClass{

    private static final Logger LOGGER = Logger.getLogger(ProcessorClass.class);
    static ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool();

    public static void processData(StringBuffer message) {
    Runnable task = new Runnable() {
    @Override
    public void run() {
    try {
    LOGGER.info("Queue size:"+executor.getQueue().size());
    if (message != null){
    processMessage(message);
    }
    }
    catch(Exception e) {
    LOGGER.error("Error happened in run() method" + e.getMessage());
    }

    }
    };
    executor.execute(task);
    }
    public static void processMessage(StringBuffer message){
    // all the processing of message such as DB operations goes here.
    }
    }


    Doubts:



    1.How CachedThreadPool stores the message in the queue because i haven't defined any explicitly.
    2.Should i chose FixedThreadPool over this?
    3.Should i make my processMessage() method synchronized?


    All the suggestions and review comments are welcome.










    share|improve this question

























      0












      0








      0


      1






      I have server-client communication architecture where there is one server and 150 clients The server-client communication happens via java NIO where all the clients send some or the other data every 10 seconds. Previously we used to queue all the process messages and process all those in a single thread, as the number of clients are more so as the messages, server is not able to process all the messages instantly and there is a delay in processing in turn data loss. So i have thought of implementing CachecThreadPool to process the tasks simultaneously as soon as they come, i have picked CachedThreadPool over FixedThreadPool because the tasks are short lived and many in number, below is the code for that. The thread which receives messages from client calls ProcessorClass.processData(message) as soon as it receives the message.



      public class ProcessorClass{

      private static final Logger LOGGER = Logger.getLogger(ProcessorClass.class);
      static ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool();

      public static void processData(StringBuffer message) {
      Runnable task = new Runnable() {
      @Override
      public void run() {
      try {
      LOGGER.info("Queue size:"+executor.getQueue().size());
      if (message != null){
      processMessage(message);
      }
      }
      catch(Exception e) {
      LOGGER.error("Error happened in run() method" + e.getMessage());
      }

      }
      };
      executor.execute(task);
      }
      public static void processMessage(StringBuffer message){
      // all the processing of message such as DB operations goes here.
      }
      }


      Doubts:



      1.How CachedThreadPool stores the message in the queue because i haven't defined any explicitly.
      2.Should i chose FixedThreadPool over this?
      3.Should i make my processMessage() method synchronized?


      All the suggestions and review comments are welcome.










      share|improve this question














      I have server-client communication architecture where there is one server and 150 clients The server-client communication happens via java NIO where all the clients send some or the other data every 10 seconds. Previously we used to queue all the process messages and process all those in a single thread, as the number of clients are more so as the messages, server is not able to process all the messages instantly and there is a delay in processing in turn data loss. So i have thought of implementing CachecThreadPool to process the tasks simultaneously as soon as they come, i have picked CachedThreadPool over FixedThreadPool because the tasks are short lived and many in number, below is the code for that. The thread which receives messages from client calls ProcessorClass.processData(message) as soon as it receives the message.



      public class ProcessorClass{

      private static final Logger LOGGER = Logger.getLogger(ProcessorClass.class);
      static ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool();

      public static void processData(StringBuffer message) {
      Runnable task = new Runnable() {
      @Override
      public void run() {
      try {
      LOGGER.info("Queue size:"+executor.getQueue().size());
      if (message != null){
      processMessage(message);
      }
      }
      catch(Exception e) {
      LOGGER.error("Error happened in run() method" + e.getMessage());
      }

      }
      };
      executor.execute(task);
      }
      public static void processMessage(StringBuffer message){
      // all the processing of message such as DB operations goes here.
      }
      }


      Doubts:



      1.How CachedThreadPool stores the message in the queue because i haven't defined any explicitly.
      2.Should i chose FixedThreadPool over this?
      3.Should i make my processMessage() method synchronized?


      All the suggestions and review comments are welcome.







      java multithreading nio java.util.concurrent






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 '18 at 6:04









      ravirajaraviraja

      550314




      550314
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Executors.newCachedThreadPool and Executors.newFixedThreadPool are both have same thread pool implementation just with different parameters. The differences are in their thread minimum, maximum, thread kill time, and queue type.



          In FixedThreadPool you can submit any number of tasks to the executor service but max number of threads will be maintained at the level you specified. If you explicitly want to grow the number of threads then this is not the right choice.



          CachedThreadPool will not limit the number of thread in the threadpool. It can grow MAX_VALUE of Integer.






          share|improve this answer































            0















            How CachedThreadPool stores the message in the queue because i haven't
            defined any explicitly.




            CachedThreadPool does not store your message in the queue. getQueue gets the tasks that you submitted to the queue.




            Should i chose FixedThreadPool over this?




            CachedThreadPool is more flexible as it will grow and shrink it's number of threads. Problem is that it may grow too much and cause an OOM. FixedThreadPool won't grow or shrink but it's often good enough if you know what you're doing. Hint: do monitoring and profiling to determine how much thread you need.




            Should i make my processMessage() method synchronized?




            Without knowing the implementation details of the method, we can't advice on whether you need to synchronize it. The method surely need to be thread safe but if you just simply add synchronized on the method, I expect the performance will be even worse than if you just run everything on 1 thread.






            share|improve this answer
























            • processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

              – raviraja
              Nov 22 '18 at 8:25











            • I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

              – tanyehzheng
              Nov 22 '18 at 9:05












            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424775%2fmulti-threading-with-cachedthreadpool%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Executors.newCachedThreadPool and Executors.newFixedThreadPool are both have same thread pool implementation just with different parameters. The differences are in their thread minimum, maximum, thread kill time, and queue type.



            In FixedThreadPool you can submit any number of tasks to the executor service but max number of threads will be maintained at the level you specified. If you explicitly want to grow the number of threads then this is not the right choice.



            CachedThreadPool will not limit the number of thread in the threadpool. It can grow MAX_VALUE of Integer.






            share|improve this answer




























              0














              Executors.newCachedThreadPool and Executors.newFixedThreadPool are both have same thread pool implementation just with different parameters. The differences are in their thread minimum, maximum, thread kill time, and queue type.



              In FixedThreadPool you can submit any number of tasks to the executor service but max number of threads will be maintained at the level you specified. If you explicitly want to grow the number of threads then this is not the right choice.



              CachedThreadPool will not limit the number of thread in the threadpool. It can grow MAX_VALUE of Integer.






              share|improve this answer


























                0












                0








                0







                Executors.newCachedThreadPool and Executors.newFixedThreadPool are both have same thread pool implementation just with different parameters. The differences are in their thread minimum, maximum, thread kill time, and queue type.



                In FixedThreadPool you can submit any number of tasks to the executor service but max number of threads will be maintained at the level you specified. If you explicitly want to grow the number of threads then this is not the right choice.



                CachedThreadPool will not limit the number of thread in the threadpool. It can grow MAX_VALUE of Integer.






                share|improve this answer













                Executors.newCachedThreadPool and Executors.newFixedThreadPool are both have same thread pool implementation just with different parameters. The differences are in their thread minimum, maximum, thread kill time, and queue type.



                In FixedThreadPool you can submit any number of tasks to the executor service but max number of threads will be maintained at the level you specified. If you explicitly want to grow the number of threads then this is not the right choice.



                CachedThreadPool will not limit the number of thread in the threadpool. It can grow MAX_VALUE of Integer.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 22 '18 at 6:20









                Pandey AmitPandey Amit

                364313




                364313

























                    0















                    How CachedThreadPool stores the message in the queue because i haven't
                    defined any explicitly.




                    CachedThreadPool does not store your message in the queue. getQueue gets the tasks that you submitted to the queue.




                    Should i chose FixedThreadPool over this?




                    CachedThreadPool is more flexible as it will grow and shrink it's number of threads. Problem is that it may grow too much and cause an OOM. FixedThreadPool won't grow or shrink but it's often good enough if you know what you're doing. Hint: do monitoring and profiling to determine how much thread you need.




                    Should i make my processMessage() method synchronized?




                    Without knowing the implementation details of the method, we can't advice on whether you need to synchronize it. The method surely need to be thread safe but if you just simply add synchronized on the method, I expect the performance will be even worse than if you just run everything on 1 thread.






                    share|improve this answer
























                    • processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                      – raviraja
                      Nov 22 '18 at 8:25











                    • I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                      – tanyehzheng
                      Nov 22 '18 at 9:05
















                    0















                    How CachedThreadPool stores the message in the queue because i haven't
                    defined any explicitly.




                    CachedThreadPool does not store your message in the queue. getQueue gets the tasks that you submitted to the queue.




                    Should i chose FixedThreadPool over this?




                    CachedThreadPool is more flexible as it will grow and shrink it's number of threads. Problem is that it may grow too much and cause an OOM. FixedThreadPool won't grow or shrink but it's often good enough if you know what you're doing. Hint: do monitoring and profiling to determine how much thread you need.




                    Should i make my processMessage() method synchronized?




                    Without knowing the implementation details of the method, we can't advice on whether you need to synchronize it. The method surely need to be thread safe but if you just simply add synchronized on the method, I expect the performance will be even worse than if you just run everything on 1 thread.






                    share|improve this answer
























                    • processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                      – raviraja
                      Nov 22 '18 at 8:25











                    • I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                      – tanyehzheng
                      Nov 22 '18 at 9:05














                    0












                    0








                    0








                    How CachedThreadPool stores the message in the queue because i haven't
                    defined any explicitly.




                    CachedThreadPool does not store your message in the queue. getQueue gets the tasks that you submitted to the queue.




                    Should i chose FixedThreadPool over this?




                    CachedThreadPool is more flexible as it will grow and shrink it's number of threads. Problem is that it may grow too much and cause an OOM. FixedThreadPool won't grow or shrink but it's often good enough if you know what you're doing. Hint: do monitoring and profiling to determine how much thread you need.




                    Should i make my processMessage() method synchronized?




                    Without knowing the implementation details of the method, we can't advice on whether you need to synchronize it. The method surely need to be thread safe but if you just simply add synchronized on the method, I expect the performance will be even worse than if you just run everything on 1 thread.






                    share|improve this answer














                    How CachedThreadPool stores the message in the queue because i haven't
                    defined any explicitly.




                    CachedThreadPool does not store your message in the queue. getQueue gets the tasks that you submitted to the queue.




                    Should i chose FixedThreadPool over this?




                    CachedThreadPool is more flexible as it will grow and shrink it's number of threads. Problem is that it may grow too much and cause an OOM. FixedThreadPool won't grow or shrink but it's often good enough if you know what you're doing. Hint: do monitoring and profiling to determine how much thread you need.




                    Should i make my processMessage() method synchronized?




                    Without knowing the implementation details of the method, we can't advice on whether you need to synchronize it. The method surely need to be thread safe but if you just simply add synchronized on the method, I expect the performance will be even worse than if you just run everything on 1 thread.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 22 '18 at 7:39









                    tanyehzhengtanyehzheng

                    1,70311633




                    1,70311633













                    • processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                      – raviraja
                      Nov 22 '18 at 8:25











                    • I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                      – tanyehzheng
                      Nov 22 '18 at 9:05



















                    • processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                      – raviraja
                      Nov 22 '18 at 8:25











                    • I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                      – tanyehzheng
                      Nov 22 '18 at 9:05

















                    processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                    – raviraja
                    Nov 22 '18 at 8:25





                    processMessage() mostly deals with database operations by processing the passed message, it doesn't deal with shared objects. thumb rule is "as long as there is no shared objects, it is thread safe" right?

                    – raviraja
                    Nov 22 '18 at 8:25













                    I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                    – tanyehzheng
                    Nov 22 '18 at 9:05





                    I don't know without knowing the implementation. I think you need to either check the documentation or you need to test.

                    – tanyehzheng
                    Nov 22 '18 at 9:05


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53424775%2fmulti-threading-with-cachedthreadpool%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to send String Array data to Server using php in android

                    Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                    Is anime1.com a legal site for watching anime?