Skip to content

Releases: lf-edge/ekuiper

Kuiper 0.2.1 version

23 Mar 09:57
35c4940
Compare
Choose a tag to compare
Kuiper 0.2.1 version Pre-release
Pre-release

Overview

The initial version of Kuiper & EdgeX integration work was just completed, users can start to try it. In the coming EdgeX Geneva release, Kuiper 0.3.0 or 0.4.0 will be released with EdgeX officially.

Features

  • EdgeX integration

    • EdgeX source support, now Kuiper can consume data from EdgeX Message Bus directly. You can refer to tutorial doc for learning how to use Kuiper to analyze data from EdgeX.
    • EdgeX sink support, the analysis result can be published to EdgeX Message Bus directly.
  • Schemaless stream definition

    In previous Kuiper releases, user must create a stream with schema, but we found that in some user cases, the data schema could be very complex, and it will be difficult to create data schema for it. Now Kuiper supports to create a stream that does not have any fields, in this mode, Kuiper framework can't validate data types during data processing. So user need to very clear about the data types when writing rules, otherwise, it could probably have problems. EgeX tutorial doc is a good example of using schemaless stream.

  • FVT test schenarios enhancements

    • Added 4 EdgeX testcases
    • Added testcases for Docker image

Bug fixes

  • Fixed several problems of Github Actions

Kuiper 0.2.0 version

28 Feb 05:04
22fb4ca
Compare
Choose a tag to compare
Kuiper 0.2.0 version Pre-release
Pre-release

Overview

Kuiper 2020 Roadmap was updated to Github, and several other projects were also created, such as Kuiper & EdgeX integration project. Please click related link if you're interested in it.

Features

  • Rest mangement API now is provided. Besides CLI tools, user can manage streams & rules by Rest API.
    • Streams management
    • Rules management
  • Max support rule number benchmark
    • 8000 rules with 800 message/second with 2 core * 4GB memory in AWS
    • Resource usage
      • Memory: 89% ~ 72%
      • CPU: 25%
  • Setup FVT pipeline in Github action. FVT test scenarios will be run automatically with any code commit or PR, so the product quality can be ensured.
  • 8 Kuiper FVT (functional verification tests) were wrote, and covered following scenarios.
    • Basic functions of HTTP REST-API
    • Basic functions of CLI
    • Complex end-2-end scenario for Kuiper source, processing and sink

Bug fixes

Kuiper 0.1.1 version

10 Jan 11:02
Compare
Choose a tag to compare
Kuiper 0.1.1 version Pre-release
Pre-release

This is a minor version.

  • Fixed a regression bug, the password config cannot be loaded correctly.
  • Fixed all of the unit test problems.
  • Added continuous testing (Github actions) support.

Kuiper 0.1 version

03 Jan 02:06
2aff0a5
Compare
Choose a tag to compare
Kuiper 0.1 version Pre-release
Pre-release

Features

  • Optimized performance
    • Provides configuration for setting concurrency for Kuiper rule, so it can be optimized in different scenarios
      • concurrency setting in source: How many instances will be started. By default, only an instance will be run. If more than one instance is specified, the topic must be a shared subscription topic.
      • concurrency settings in sink: Specify how many instances of the sink will be run. If the value is bigger than 1, the order of the messages may not be retained.
      • concurrency settings in SQL plans: A rule is processed by several phases of plans according to the SQL statement. This option will specify how many instances will be run for each plan. If the value is bigger than 1, the order of the messages may not be retained.
    • Performance test result
      • Raspberry Pi 3B+: 12k messages/second; CPU utilization (sys+user): 70%; Memory: 20M
      • AWS t2.micro( 1 Core * 1 GB, Ubuntu18.04): 10k messages/second; CPU utilization (sys+user): 25%; Memory: 20M
  • Support metrics collection for rules, which can be used for message processing status tracking. The metrics includes,
    • in, out, exception message count for all operators
    • process_latency_ms for all operators
    • buffer_length, the used buffer length for all operators
    • last_invocation, the last invocation timestamp for all operators
  • Tested in OpenWrt Linux (Chaos Calmer 15.05) with 1core CPU * 256M memory, and it works fine.
  • Support re-connect to MQTT broker if MQTT source or sink is disconnected.

Bug fixes

  • Print error message in cli command if any error is found during starting a rule.
  • Fixed several issues in rest sink.

Kuiper 0.0.4 version

13 Dec 06:28
Compare
Choose a tag to compare
Kuiper 0.0.4 version Pre-release
Pre-release

Features

  • Support extension.
    • Supported the extension at compilation and architect, now support the extension
    • Supported ZeroMQ source and sink
    • Supported HTTP REST sink
    • Refactored code to support aggregate functions
  • Kuiper can be programmatically invoked by the 3rd party applications, so it can be easily integrated with the 3rd party frameworks (such as EdgeX Foundry rule engine)
  • Optimized memory footprint (memory footprint is 10MB+ when startup)
  • Build improvement

Bug fixes

  • #16 Rule status issue

0.0.3 version

20 Nov 06:20
9db99ef
Compare
Choose a tag to compare
0.0.3 version Pre-release
Pre-release

Features

  • Refactor the code to support Kuiper Sink and Source extension.
  • Enhanced MQTT Sink to support AWS IoT and Azure IoT Hub. User can directly publish result to any MQTT IoT Hub by configuring Sink.
  • Enhanced MQTT Source to support secured settings. User can specifiy username, password, certifications and private key information for MQTT source.
  • HAVING clause support
  • Added Chinese document, and renamed XStream to Kuiper in all of documents.
  • Build improvement
    • Added build version number in command line tools
    • Updated Makefile, and now supports automatically build for all platforms

Bug fixes

  • #7 GROUP BY issue
  • #13 Kuiper server quits when a rule is drop

0.0.2 version

23 Oct 05:50
3d0b696
Compare
Choose a tag to compare
0.0.2 version Pre-release
Pre-release

Currently, only Linux versions are officially supported.

  • SELECT field [,f] FROM stream WHERE
  • Function support
  • Command line tools
    • CREATE/DROP/DESCRIBE/SHOW streams
    • CREATE/DROP/DESCRIBE/SHOW rules
  • JOIN clause
  • GROUP BY
  • Windows support