Uploaded image for project: 'Camel'
  1. Camel
  2. CAMEL-2206

Addition of 'Sample' Throttling strategy

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.1.0
    • camel-core, camel-spring
    • None
    • Patch Available

    Description

      I've been using a different kind of sampling based throttling pattern recently and figured others might find it useful. The basic premise is the same as the current throttler, there is a consumer downstream that has specific requirements as to how fast it can process incoming exchanges and a mechanism is required to 'throttle' the exchanges inbound to it. The difference between the current throttler implementation and the sampling throttler is that where the current throttler queues up all the exchanges it receives, the sampling throttler will allow only a single exchange through for a period and 'drop' all others; dropped exchanges being passed to a stop processor to complete them.

      Its been useful for situations where a route receives many semantically equivalent exchanges in a time period, any single one of which could be used to represent them all. For example, say an upstream component generates a stream of warning alarms and sends these to an email processor to inform the operator. An email for each alarm would be overkill instead one every x minutes or so would be preferred. Also it would be undesirable for the throttler to queue up these warning alarms as when the upstream component ceases sending them the emails should cease. Sampling the warnings would pick one for each x minute period, and stop the rest.

      This would be defined via the java dsl as follows

      from("direct:alarm-notifier").sample(60, TimeUnit.SECONDS).to("direct:alarm-emailer")

      or

      from("direct:alarm-notifier").sample().samplePeriod(1).timeUnits(TimeUnit.SECONDS).to("direct:alarm-emailer")

      or with a default of one per second

      from("direct:alarm-notifier").sample().to("direct:alarm-emailer")

      In spring xml it looks like

      <route>
        <from uri="direct:sample" />
        <sample>
          <to uri="mock:result" />
        </sample>
      </route>
      

      or

      <route>
        <from uri="direct:sample" />
        <sample samplePeriod="1" units="seconds">
          <to uri="mock:result" />
        </sample>
      </route>
      

      If this patch is accepted, I'd be happy to update the wiki with the required documentation. As per ususal I've split the patches, one for core and one for spring

      Attachments

        1. sampling-patch-core-with-stats.txt
          19 kB
          Stephen Gargan
        2. sampling-patch-core-with-javadoc.txt
          18 kB
          Stephen Gargan
        3. sampling-patch-core.txt
          18 kB
          Stephen Gargan
        4. sampling-patch-spring.txt
          4 kB
          Stephen Gargan
        5. sampling-patch-core.txt
          16 kB
          Stephen Gargan

        Activity

          People

            davsclaus Claus Ibsen
            sgargan Stephen Gargan
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: