Kuiper allows user to customize the different kinds of extensions.
Kuiper extensions are based on golang plugin system. The general steps to make extensions are:
Currently golang plugins are only supported on Linux and macOS which poses the same limitation for Kuiper extensions.
Notice that, there are some restrictions for the names:
The user can optionally add a version string to the name of .so to help identify the version of the plugin. The version can be then retrieved through describe CLI command or REST API. The naming convention is to add a version string to the name after @v. The version can be any string. Below are some typical examples.
If multiple versions of plugins with the same name in place, only the latest version(ordered by the version string) will be taken effect.
It is required to build the plugin with exactly the same version of dependencies. And the plugin must implement interfaces exported by Kuiper, so the Kuiper project must be in the gopath.
A typical environment for developing plugins is to put the plugin and Kuiper in the same project. To set it up:
bash
go build --buildmode=plugin -o plugins/sources/MySource.so plugins/sources/my_source.go
The development of plugins is to implement a specific interface according to the plugin type and export the implementation with a specific name. There are two types of exported symbol supported:
Export a constructor function: Kuiper will use the constructor function to create a new instance of the plugin implementation for each load. So each rule will have one instance of the plugin and each instance will be isolated from others. This is the recommended way.
Export an instance: Kuiper will use the instance as singleton for all plugin load. So all rules will share the same instance. For such implementation, the developer will need to handle the shared states to avoid any potential multi-thread problems. This mode is recommended where there are no shared states and the performance is critical. Especially, function extension is usually functional without internal state which is suitable for this mode.
Please read below for how to realize the different extensions.