Doris Plugin Framework

Introduction

Doris plugin framework supports install/uninstall custom plugins at runtime without restart the Doris service. Users can extend Doris’s functionality by developing their own plugins.

For example, the audit plugin worked after a request execution, it can obtain information related to a request (access user, request IP, SQL, etc…) and write the information into the specified table.

Differences from UDF:

  • UDF is a function used for data calculation when SQL is executed. Plugin is additional function that is used to extend Doris with customized function, such as support different storage engines and different import ways, and plugin does’t participate in data calculation when executing SQL.
  • The execution cycle of UDF is limited to a SQL execution. The execution cycle of plugin may be the same as the Doris process.
  • The usage scene is different. If you need to support special data algorithms when executing SQL, then UDF is recommended, if you need to run custom functions on Doris, or start a background thread to do tasks, then the use of plugin is recommended.

Currently the plugin framework only supports audit plugins.

Note: Doris plugin framework is an experimental feature, currently only supports FE plugin, and is closed by default, can be opened by FE configuration plugin_enable = true.

Plugin

A FE Plugin can be a .zip package or a directory, which contains at least two parts: the plugin.properties and .jar files. The plugin.properties file is used to describe the plugin information.

The file structure of a Plugin looks like this:

  1. # plugin .zip
  2. auditodemo.zip:
  3. -plugin.properties
  4. -auditdemo.jar
  5. -xxx.config
  6. -data/
  7. -test_data/
  8. # plugin local directory
  9. auditodemo/:
  10. -plugin.properties
  11. -auditdemo.jar
  12. -xxx.config
  13. -data/
  14. -test_data/

plugin.properties example:

  1. ### required:
  2. #
  3. # the plugin name
  4. name = audit_plugin_demo
  5. #
  6. # the plugin type
  7. type = AUDIT
  8. #
  9. # simple summary of the plugin
  10. description = just for test
  11. #
  12. # Doris's version, like: 0.11.0
  13. version = 0.11.0
  14. ### FE-Plugin optional:
  15. #
  16. # version of java the code is built against
  17. # use the command "java -version" value, like 1.8.0, 9.0.1, 13.0.4
  18. java.version = 1.8.31
  19. #
  20. # the name of the class to load, fully-qualified.
  21. classname = AuditPluginDemo
  22. ### BE-Plugin optional:
  23. # the name of the so to load
  24. soName = example.so

Write A Plugin

The development environment of the FE plugin depends on the development environment of Doris. So please make sure Doris’s compilation and development environment works normally.

fe_plugins is the parent module of the fe plugins. It can uniformly manage the third-party library information that the plugin depends on. Adding a plugin can add a submodule implementation under fe_plugins.

Create module

We can add a submodule in the fe_plugins directory to implement Plugin and create a project:

  1. mvn archetype: generate -DarchetypeCatalog = internal -DgroupId = org.apache -DartifactId = doris-fe-test -DinteractiveMode = false

The command produces a new mvn project, and a new submodule is automatically added to fe_plugins/pom.xml:

  1. .....
  2. <groupId>org.apache</groupId>
  3. <artifactId>doris-fe-plugins</artifactId>
  4. <packaging>pom</packaging>
  5. <version>1.0-SNAPSHOT</version>
  6. <modules>
  7. <module>auditdemo</module>
  8. # new plugin module
  9. <module>doris-fe-test</module>
  10. </modules>
  11. .....

The new plugin project file structure is as follows:

  1. -doris-fe-test/
  2. -pom.xml
  3. -src/
  4. ---- main/java/org/apache/
  5. ------- App.java # mvn auto generate, ignore
  6. ---- test/java/org/apache

We will add an assembly folder under main to store plugin.properties and zip.xml. After completion, the file structure is as follows:

  1. -doris-fe-test/
  2. -pom.xml
  3. -src/
  4. ---- main/
  5. ------ assembly/
  6. -------- plugin.properties
  7. -------- zip.xml
  8. ------ java/org/apache/
  9. --------App.java # mvn auto generate, ignore
  10. ---- test/java/org/apache

Add zip.xml

zip.xml, used to describe the content of the final package of the plugin (.jar file, plugin.properties):

  1. <assembly>
  2. <id>plugin</id>
  3. <formats>
  4. <format>zip</format>
  5. </formats>
  6. <!-IMPORTANT: must be false->
  7. <includeBaseDirectory>false</includeBaseDirectory>
  8. <fileSets>
  9. <fileSet>
  10. <directory>target</directory>
  11. <includes>
  12. <include>*.jar</include>
  13. </ ncludes>
  14. <outputDirectory>/</outputDirectory>
  15. </fileSet>
  16. <fileSet>
  17. <directory>src/main/assembly</directory>
  18. <includes>
  19. <include>plugin.properties</include>
  20. </includes>
  21. <outputDirectory>/</outputDirectory>
  22. </fileSet>
  23. </fileSets>
  24. </assembly>

Update pom.xml

Then we need to update pom.xml, add doris-fe dependency, and modify maven packaging way:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>org.apache</groupId>
  7. <artifactId>doris-fe-plugins</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>auditloader</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- doris-fe dependencies -->
  15. <dependency>
  16. <groupId>org.apache</groupId>
  17. <artifactId>doris-fe</artifactId>
  18. </dependency>
  19. <!-- other dependencies -->
  20. <dependency>
  21. ...
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <finalName>auditloader</finalName>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-assembly-plugin</artifactId>
  29. <version>2.4.1</version>
  30. <configuration>
  31. <appendAssemblyId>false</appendAssemblyId>
  32. <descriptors>
  33. <descriptor>src/main/assembly/zip.xml</descriptor>
  34. </descriptors>
  35. </configuration>
  36. <executions>
  37. <execution>
  38. <id>make-assembly</id>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>single</goal>
  42. </goals>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>

Implement plugin

Then we can implement Plugin according to the needs. Plugins need to implement the Plugin interface. For details, please refer to the auditdemo plugin sample code that comes with Doris.

Compile

Before compiling the plugin, you must first execute sh build.sh --fe of Doris to complete the compilation of Doris FE.

Finally, execute sh build_plugin.sh in the ${DORIS_HOME} path and you will find the your_plugin_name.zip file in fe_plugins/output

Or you can execute sh build_plugin.sh --plugin your_plugin_name to only build your plugin.

Other way

The easiest way, you can implement your plugin by modifying the example auditdemo

Deploy

Doris’s plugin can be deployed in three ways:

  • Http or Https .zip, like http://xxx.xxxxxx.com/data/plugin.zip, Doris will download this .zip file
  • Local .zip, like /home/work/data/plugin.zip, need to be deployed on all FE and BE nodes
  • Local directory, like /home/work/data/plugin, .zip decompressed folder, need to be deployed on all FE, BE nodes

Note: Need to ensure that the plugin .zip file is available in the life cycle of doris!

Install and Uninstall

Install and uninstall the plugin through the install/uninstall statements. More details, see HELP INSTALL PLUGIN; HELP IUNNSTALL PLUGIN; HELP SHOW PLUGINS;

  1. mysql> install plugin from "/home/users/doris/auditloader.zip";
  2. Query OK, 0 rows affected (0.09 sec)
  3. mysql> mysql> show plugins\G
  4. *************************** 1. row ***************************
  5. Name: auditloader
  6. Type: AUDIT
  7. Description: load audit log to olap load, and user can view the statistic of queries
  8. Version: 0.12.0
  9. JavaVersion: 1.8.31
  10. ClassName: AuditLoaderPlugin
  11. SoName: NULL
  12. Sources: /home/users/doris/auditloader.zip
  13. Status: INSTALLED
  14. *************************** 2. row ***************************
  15. Name: AuditLogBuilder
  16. Type: AUDIT
  17. Description: builtin audit logger
  18. Version: 0.12.0
  19. JavaVersion: 1.8.31
  20. ClassName: org.apache.doris.qe.AuditLogBuilder
  21. SoName: NULL
  22. Sources: Builtin
  23. Status: INSTALLED
  24. 2 rows in set (0.00 sec)
  25. mysql> uninstall plugin auditloader;
  26. Query OK, 0 rows affected (0.05 sec)
  27. mysql> show plugins;
  28. Empty set (0.00 sec)