Uploaded image for project: 'JGroups'
  1. JGroups
  2. JGRP-2534

Limit the number of threads processing retransmission requests

    XMLWordPrintable

Details

    • Bug
    • Resolution: Won't Do
    • Major
    • 5.1.6
    • 4.0.21, 4.2.11
    • None
    • False
    • False
    • Undefined

    Description

      When UNICAST3 receives a retransmission request, it starts sending the requested messages immediately, on the same internal thread that received the request. Sometimes the retransmission takes a long time, e.g. if the TP bundler is no-bundler or sender-sends, or if the bundler is transfer-queue and the bundler queue is full.

      The internal thread pool normally handling retransmission requests is small, but when it is full TP will create a temporary thread for each new internal message. That means the number of threads that are re-sending the same message to the same destination is bounded only by the JVM's capacity to create new threads.

      Sending the same messages multiple times may also take precious resources away from recovering after a bad situation, after a long GC pause or after a burst of application messages fills up the main thread pool and TP starts discarding application messages.

      It would be better if the number of retransmission requests being processed at the same time was limited, and duplicate requests for the same message were merged. I'm not sure if a single thread would be enough to handle retransmission requests from all destinations, maybe internal thread pool size / 2 or one thread per destination would be better.

      Attachments

        Issue Links

          Activity

            People

              rhn-engineering-bban Bela Ban
              dberinde@redhat.com Dan Berindei (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: