You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/06/03 05:27:29 UTC

[incubator-streampipes-extensions] branch dev updated (4d781ce -> 8d00841)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git.


    from 4d781ce  Working on SQL sink and adapters
     new 15a81f9  Replace guava dependency with quartz
     new c27476c  Refactor window api and move scheduler to quartz
     new 12ff934  Add cron window implementation
     new 13d3668  Add cron window support with rate-limiting
     new d4ea813  Update documentation with cron window config
     new 8d00841  Merge pull request #20 from grainier/STREAMPIPES-151

The 954 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                            |  7 +-
 streampipes-processors-filters-jvm/pom.xml         |  4 +-
 .../filters/jvm/processor/limit/RateLimit.java     | 18 ++++--
 .../jvm/processor/limit/RateLimitController.java   |  9 +++
 .../jvm/processor/limit/RateLimitParameters.java   | 10 +--
 .../util/{EventSelection.java => ProcessJob.java}  | 17 +++--
 .../jvm/processor/limit/util/SchedulerUtil.java    | 58 +++++++++++++++++
 .../jvm/processor/limit/util/WindowFactory.java    | 14 ++--
 .../jvm/processor/limit/util/WindowType.java       |  3 +-
 .../window/CronWindow.java}                        | 43 ++++++-------
 .../jvm/processor/limit/window/LengthWindow.java   | 10 ++-
 .../{TimeWindow.java => ScheduleWindow.java}       | 74 +++++++++++++++-------
 .../jvm/processor/limit/window/TimeWindow.java     | 58 +++--------------
 .../filters/jvm/processor/limit/window/Window.java |  9 ++-
 .../documentation.md                               |  9 ++-
 .../strings.en                                     |  6 ++
 16 files changed, 222 insertions(+), 127 deletions(-)
 copy streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/limit/util/{EventSelection.java => ProcessJob.java} (66%)
 create mode 100644 streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/limit/util/SchedulerUtil.java
 copy streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/{projection/Projection.java => limit/window/CronWindow.java} (54%)
 copy streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/limit/window/{TimeWindow.java => ScheduleWindow.java} (51%)