Releases: lf-edge/ekuiper
Kuiper 0.5.1 version
This release fixed several issues.
- Refactor the
kuiper.yaml
loading - Fixed rest sink header settings
- Fixed rest sink cache problems - the cache entries cannot be deleted even they are sent successfully
- Add
insecureSkipVerify
in rest sink, which allows user to set in-secured verification flag
Kuiper 0.5.0 version
Overview
Kuiper 0.5.0 adds some significant features and also fix problems requested from community.
Features & fixes
- Support for using Kuiper keywords in SQL statements.
- Support for count window, which allows user do count based window analysis.
- More JSON functions are supported, including
json_path_exists, json_path_query, json_path_query_first
. - Updated Github action and add
go fmt
in continuously integration pipeline. - Added contributing guide.
- Add Influxdb sink sample plugin.
- A document for reserved keywords in Kuiper.
- Update plugin development tutorial document.
- Fixed rule order issue.
- Fixed the problem with
column name with '.' will have an error log
. - Fixed aggregation functions with nil value.
- Fixed
aarch64
binary package issue.
Thanks
-
@worldmaomao provided rule order issue.
-
@smart33690 provided Influxdb sink sample plugin.
Kuiper 0.4.2 version
- Kuiper 0.4.2 fixes a problem for
aarch64
- it throwsSegmentation Fault
, will not useupx
to compress the binary file. - Support to set Kuiper Docker environment with more generic way.
- Fixed EdgeX optional setting problem.
Kuiper 0.4.1 version
Overview
Kuiper 0.4.1 version fixed some problems reported from community.
Features
- Support multi-instances creation for plugins. In previous versions, plugin only supports one single instance, now multiple plugin instances can be supported by returning a construction function.
- Fixed
dataTemplate
usage in rule document. - Fixed EdgeX floating data can not be processed problem in some cases.
- Support for updating EdgeX MQTT message bus configurations by Docker environment variables.
- Support for using alias for aggregation functions, and then use alias name in WHERE or HAVING clause, it can greatly improve the performance.
- Returns 404 response code when deleting not existed streams or rules, while previously returns 400.
- Fix sink infinite resend after rule stopped problem.
- When using
SELECT *
, now it can correctly process the field name case by reading stream schema definition or actual field name sent in streams. - Fixed problem of multiple same type of sink cannot work correctly.
- http_pull source support, it can pull data from HTTP rest interface by specified interval time.
Thanks
@worldmaomao provided EdgeX floating processing fixes.
Kuiper 0.4.0 version
Overview
- The capability of supporting more complex plugin;
- Support template feature for all sinks, so users can customize complex output data.
Features
- Supported template feature for all of sinks, now user can leverage template to customize complex output data in all sinks.
- When user invoke API for creating a plugin, user can provide a install.sh script in zip file, so that the complex library dependencies installation can be supported.
- Added FVT scenario for plugin.
- Updated document structure.
- Added Docker image based on Debian, user can select this image if want to have more library dependencies.
- Add Kuiper plugin development tutorial.
Kuiper 0.3.2 version
Overview
Kuiper 0.3.2 is the candidate release that ship with EdgeX Foundry Geneva. User can follow this tutorial for starting use Kuiper rule engine in EdgeX Foundry Geneva release.
Features
-
EdgeX integration
- Add float decoding support in EdgeX source
-
Return rule status when getting list of rules.
-
Unify all of Golang compile version to 1.13.
Bug fixes
- Fixes some document and bug issues.
Kuiper 0.3.1 version
Overview
The Kuiper & EdgeX integration work is going to be released, Kuiper team fixed several problems during integration with EdgeX . Kuiper 0.3.1 or 0.3.2 will be released with EdgeX officially.
Features
-
EdgeX integration
- EdgeX MQTT message bus support. Kuiper source & sink now can support message bus over MQTT broker .
- Benchmark result for EdgeX: EdgeX Kuiper rule engine supports 11.4k message throughput per second in AWS t2.micro( 1 Core * 1 GB). Refer to this doc for detailed info.
- Expose Kuiper Rest API port in Docker environment variable.
-
Add a Kuiper plugin development tutorial (Chinese).
Bug fixes
- Fixes some document issues.
Kuiper 0.3.0 version
Overview
The Kuiper & EdgeX integration work is almost completed, Kuiper will be integrated with EdgeX nightly Docker composer files soon. Kuiper 0.3.1will be released with EdgeX officially.
Features
-
EdgeX integration
- Fixed some issues based on user's feedback, and updated the tutorial doc .
- New implementation EdgeX sink support based on the feedback from community, the analysis result can be published with the required format of EdgeX Message bus.
- Translated EdgeX document to Chinese.
-
Plugin management
- Kuiper now supports plugin management, but it was not provided in old versions. In this version, Kuiper provides REST API & command line tools. User can add, delete and view plugins through management tools.
Bug fixes
- null handling in pre-processor
- Rest sink exceptions
- Fixes some document issues.
Kuiper 0.2.1 version
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
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
- Fixed the sink result is not correct issue
- Fixed several problems for running multiple rules.