编写触发器

触发器依赖

触发器的逻辑需要您编写 Java 类进行实现。 在编写触发器逻辑时,需要使用到下面展示的依赖。如果您使用 Maven编写触发器 - 图1open in new window,则可以直接从 Maven 库编写触发器 - 图2open in new window中搜索到它们。请注意选择和目标服务器版本相同的依赖版本。

  1. <dependency>
  2. <groupId>org.apache.iotdb</groupId>
  3. <artifactId>iotdb-server</artifactId>
  4. <version>1.0.0</version>
  5. <scope>provided</scope>
  6. </dependency>

接口说明

编写一个触发器需要实现 org.apache.iotdb.trigger.api.Trigger 类。

  1. import org.apache.iotdb.trigger.api.enums.FailureStrategy;
  2. import org.apache.iotdb.tsfile.write.record.Tablet;
  3. public interface Trigger {
  4. /**
  5. * This method is mainly used to validate {@link TriggerAttributes} before calling {@link
  6. * Trigger#onCreate(TriggerAttributes)}.
  7. *
  8. * @param attributes TriggerAttributes
  9. * @throws Exception e
  10. */
  11. default void validate(TriggerAttributes attributes) throws Exception {}
  12. /**
  13. * This method will be called when creating a trigger after validation.
  14. *
  15. * @param attributes TriggerAttributes
  16. * @throws Exception e
  17. */
  18. default void onCreate(TriggerAttributes attributes) throws Exception {}
  19. /**
  20. * This method will be called when dropping a trigger.
  21. *
  22. * @throws Exception e
  23. */
  24. default void onDrop() throws Exception {}
  25. /**
  26. * When restarting a DataNode, Triggers that have been registered will be restored and this method
  27. * will be called during the process of restoring.
  28. *
  29. * @throws Exception e
  30. */
  31. default void restore() throws Exception {}
  32. /**
  33. * Overrides this method to set the expected FailureStrategy, {@link FailureStrategy#OPTIMISTIC}
  34. * is the default strategy.
  35. *
  36. * @return {@link FailureStrategy}
  37. */
  38. default FailureStrategy getFailureStrategy() {
  39. return FailureStrategy.OPTIMISTIC;
  40. }
  41. /**
  42. * @param tablet see {@link Tablet} for detailed information of data structure. Data that is
  43. * inserted will be constructed as a Tablet and you can define process logic with {@link
  44. * Tablet}.
  45. * @return true if successfully fired
  46. * @throws Exception e
  47. */
  48. default boolean fire(Tablet tablet) throws Exception {
  49. return true;
  50. }
  51. }

该类主要提供了两类编程接口:生命周期相关接口数据变动侦听相关接口。该类中所有的接口都不是必须实现的,当您不实现它们时,它们不会对流经的数据操作产生任何响应。您可以根据实际需要,只实现其中若干接口。

下面是所有可供用户进行实现的接口的说明。

生命周期相关接口

接口定义描述
default void validate(TriggerAttributes attributes) throws Exception {}用户在使用 CREATE TRIGGER 语句创建触发器时,可以指定触发器需要使用的参数,该接口会用于验证参数正确性。
default void onCreate(TriggerAttributes attributes) throws Exception {}当您使用CREATE TRIGGER语句创建触发器后,该接口会被调用一次。在每一个触发器实例的生命周期内,该接口会且仅会被调用一次。该接口主要有如下作用:帮助用户解析 SQL 语句中的自定义属性(使用TriggerAttributes)。 可以创建或申请资源,如建立外部链接、打开文件等。
default void onDrop() throws Exception {}当您使用DROP TRIGGER语句删除触发器后,该接口会被调用。在每一个触发器实例的生命周期内,该接口会且仅会被调用一次。该接口主要有如下作用:可以进行资源释放的操作。可以用于持久化触发器计算的结果。
default void restore() throws Exception {}当重启 DataNode 时,集群会恢复 DataNode 上已经注册的触发器实例,在此过程中会为该 DataNode 上的有状态触发器调用一次该接口。有状态触发器实例所在的 DataNode 宕机后,集群会在另一个可用 DataNode 上恢复该触发器的实例,在此过程中会调用一次该接口。该接口可以用于自定义恢复逻辑。

数据变动侦听相关接口

侦听接口
  1. /**
  2. * @param tablet see {@link Tablet} for detailed information of data structure. Data that is
  3. * inserted will be constructed as a Tablet and you can define process logic with {@link
  4. * Tablet}.
  5. * @return true if successfully fired
  6. * @throws Exception e
  7. */
  8. default boolean fire(Tablet tablet) throws Exception {
  9. return true;
  10. }

数据变动时,触发器以 Tablet 作为触发操作的单位。您可以通过 Tablet 获取相应序列的元数据和数据,然后进行相应的触发操作,触发成功则返回值应当为 true。该接口返回 false 或是抛出异常我们均认为触发失败。在触发失败时,我们会根据侦听策略接口进行相应的操作。

进行一次 INSERT 操作时,对于其中的每条时间序列,我们会检测是否有侦听该路径模式的触发器,然后将符合同一个触发器所侦听的路径模式的时间序列数据组装成一个新的 Tablet 用于触发器的 fire 接口。可以理解成:

  1. Map<PartialPath, List<Trigger>> pathToTriggerListMap => Map<Trigger, Tablet>

请注意,目前我们不对触发器的触发顺序有任何保证。

下面是示例:

假设有三个触发器,触发器的触发时机均为 BEFORE INSERT

  • 触发器 Trigger1 侦听路径模式:root.sg编写触发器 - 图3open in new window.*
  • 触发器 Trigger2 侦听路径模式:root.sg.a
  • 触发器 Trigger3 侦听路径模式:root.sg.b

写入语句:

  1. insert into root.sg(time, a, b) values (1, 1, 1);

序列 root.sg.a 匹配 Trigger1 和 Trigger2,序列 root.sg.b 匹配 Trigger1 和 Trigger3,那么:

  • root.sg.a 和 root.sg.b 的数据会被组装成一个新的 tablet1,在相应的触发时机进行 Trigger1.fire(tablet1)
  • root.sg.a 的数据会被组装成一个新的 tablet2,在相应的触发时机进行 Trigger2.fire(tablet2)
  • root.sg.b 的数据会被组装成一个新的 tablet3,在相应的触发时机进行 Trigger3.fire(tablet3)
侦听策略接口

在触发器触发失败时,我们会根据侦听策略接口设置的策略进行相应的操作,您可以通过下述接口设置 org.apache.iotdb.trigger.api.enums.FailureStrategy,目前有乐观和悲观两种策略:

  • 乐观策略:触发失败的触发器不影响后续触发器的触发,也不影响写入流程,即我们不对触发失败涉及的序列做额外处理,仅打日志记录失败,最后返回用户写入数据成功,但触发部分失败。
  • 悲观策略:失败触发器影响后续所有 Pipeline 的处理,即我们认为该 Trigger 触发失败会导致后续所有触发流程不再进行。如果该触发器的触发时机为 BEFORE INSERT,那么写入也不再进行,直接返回写入失败。
  1. /**
  2. * Overrides this method to set the expected FailureStrategy, {@link FailureStrategy#OPTIMISTIC}
  3. * is the default strategy.
  4. *
  5. * @return {@link FailureStrategy}
  6. */
  7. default FailureStrategy getFailureStrategy() {
  8. return FailureStrategy.OPTIMISTIC;
  9. }

您可以参考下图辅助理解,其中 Trigger1 配置采用乐观策略,Trigger2 配置采用悲观策略。Trigger1 和 Trigger2 的触发时机是 BEFORE INSERT,Trigger3 和 Trigger4 的触发时机是 AFTER INSERT。 正常执行流程如下:

编写触发器 - 图4编写触发器 - 图5

示例

如果您使用 Maven编写触发器 - 图6open in new window,可以参考我们编写的示例项目 trigger-example。您可以在 这里编写触发器 - 图7open in new window 找到它。后续我们会加入更多的示例项目供您参考。

下面是其中一个示例项目的代码:

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.apache.iotdb.trigger;
  20. import org.apache.iotdb.db.engine.trigger.sink.alertmanager.AlertManagerConfiguration;
  21. import org.apache.iotdb.db.engine.trigger.sink.alertmanager.AlertManagerEvent;
  22. import org.apache.iotdb.db.engine.trigger.sink.alertmanager.AlertManagerHandler;
  23. import org.apache.iotdb.trigger.api.Trigger;
  24. import org.apache.iotdb.trigger.api.TriggerAttributes;
  25. import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
  26. import org.apache.iotdb.tsfile.write.record.Tablet;
  27. import org.apache.iotdb.tsfile.write.schema.MeasurementSchema;
  28. import org.slf4j.Logger;
  29. import org.slf4j.LoggerFactory;
  30. import java.io.IOException;
  31. import java.util.HashMap;
  32. import java.util.List;
  33. public class ClusterAlertingExample implements Trigger {
  34. private static final Logger LOGGER = LoggerFactory.getLogger(ClusterAlertingExample.class);
  35. private final AlertManagerHandler alertManagerHandler = new AlertManagerHandler();
  36. private final AlertManagerConfiguration alertManagerConfiguration =
  37. new AlertManagerConfiguration("http://127.0.0.1:9093/api/v2/alerts");
  38. private String alertname;
  39. private final HashMap<String, String> labels = new HashMap<>();
  40. private final HashMap<String, String> annotations = new HashMap<>();
  41. @Override
  42. public void onCreate(TriggerAttributes attributes) throws Exception {
  43. alertname = "alert_test";
  44. labels.put("series", "root.ln.wf01.wt01.temperature");
  45. labels.put("value", "");
  46. labels.put("severity", "");
  47. annotations.put("summary", "high temperature");
  48. annotations.put("description", "{{.alertname}}: {{.series}} is {{.value}}");
  49. alertManagerHandler.open(alertManagerConfiguration);
  50. }
  51. @Override
  52. public void onDrop() throws IOException {
  53. alertManagerHandler.close();
  54. }
  55. @Override
  56. public boolean fire(Tablet tablet) throws Exception {
  57. List<MeasurementSchema> measurementSchemaList = tablet.getSchemas();
  58. for (int i = 0, n = measurementSchemaList.size(); i < n; i++) {
  59. if (measurementSchemaList.get(i).getType().equals(TSDataType.DOUBLE)) {
  60. // for example, we only deal with the columns of Double type
  61. double[] values = (double[]) tablet.values[i];
  62. for (double value : values) {
  63. if (value > 100.0) {
  64. LOGGER.info("trigger value > 100");
  65. labels.put("value", String.valueOf(value));
  66. labels.put("severity", "critical");
  67. AlertManagerEvent alertManagerEvent =
  68. new AlertManagerEvent(alertname, labels, annotations);
  69. alertManagerHandler.onEvent(alertManagerEvent);
  70. } else if (value > 50.0) {
  71. LOGGER.info("trigger value > 50");
  72. labels.put("value", String.valueOf(value));
  73. labels.put("severity", "warning");
  74. AlertManagerEvent alertManagerEvent =
  75. new AlertManagerEvent(alertname, labels, annotations);
  76. alertManagerHandler.onEvent(alertManagerEvent);
  77. }
  78. }
  79. }
  80. }
  81. return true;
  82. }
  83. }