Details

    Description

      Currently  CollectResultFetcher use a fixed retry interval.

      private void sleepBeforeRetry() {
          if (retryMillis <= 0) {
              return;
          }
      
          try {
              // TODO a more proper retry strategy?
              Thread.sleep(retryMillis);
          } catch (InterruptedException e) {
              LOG.warn("Interrupted when sleeping before a retry", e);
          }
      } 

      This can be improved with a RetryStrategy.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              xiangyu0xf xiangyu feng
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated: