164 lines
6.4 KiB
Java
Raw Normal View History

Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.watcher.trigger;
import org.elasticsearch.common.bytes.BytesReference;
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
import org.elasticsearch.common.collect.ImmutableMap;
import org.elasticsearch.common.component.AbstractComponent;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.xcontent.XContentHelper;
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
import org.elasticsearch.common.xcontent.XContentParser;
import java.io.IOException;
import java.util.Collection;
import java.util.List;
import java.util.Map;
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
import java.util.Set;
import java.util.concurrent.CopyOnWriteArrayList;
/**
*
*/
public class TriggerService extends AbstractComponent {
private final Listeners listeners;
private final ImmutableMap<String, TriggerEngine> engines;
@Inject
public TriggerService(Settings settings, Set<TriggerEngine> engines) {
super(settings);
listeners = new Listeners();
ImmutableMap.Builder<String, TriggerEngine> builder = ImmutableMap.builder();
for (TriggerEngine engine : engines) {
builder.put(engine.type(), engine);
engine.register(listeners);
}
this.engines = builder.build();
}
public synchronized void start(Collection<? extends TriggerEngine.Job> jobs) {
for (TriggerEngine engine : engines.values()) {
engine.start(jobs);
}
}
public synchronized void stop() {
for (TriggerEngine engine : engines.values()) {
engine.stop();
}
}
public void add(TriggerEngine.Job job) {
engines.get(job.trigger().type()).add(job);
}
Adds initial schedule engine implementation - `TimerScheduleTriggerEngine` - a single threaded Java `Timer`based scheduler. "Ticks" every second and checks all the registered schedules. - `SimpleTickerScheduleTriggerEngine` - a single threaded scheduler. "Ticks" every second and checks all the registered schedules - `SchedulerScheduleTriggerEngine` - a single threaded engine based on Java's schedule executor service. Here, every job is added as a scheduled task to the executor and each job is managing its own execution times. - `HashWheelScheduleTriggerEngine` - a single threaded engine based on Netty's `HashWheelTimer`. Like with the `scheduler` above, every job is added as a scheduled task to the executor and each job is managing its own execution times. Also: - Added an undocumented feature to configure the schedule engine in the settings using `watcher.trigger.schedule.engine` (optional values right now are `quartz`, `simple`, `timer`, `hashwheel` and `scheduler`) - `Cron` is a fork/copy of quartz `CronExpression`.. a bit cleaned up though. - `Schedule` now exposes `nextScheduledTimeAfter` to return the next scheduled time after the given one. - `CronnableSchedule` is now based on `Cron` (this exposed bugs in the schedule tests where we generated invalid cron expression. Now, since `Cronnable` creates the actual cron, validation is in place to make sure only valid expressions are created) - While at it... refactored how the thread pool settings are set. Removed it from the plugin class, now each module is responsible for the settings of its own TPs. Also, if the thread pools are already configured in node settings we don't configure our default ones. This will enable users to configure the TPs in `elasticsearch.yml` - Also updated `CronEvalTool` to work with `DateTime` construct (instead of java's `Date`) Original commit: elastic/x-pack-elasticsearch@40d107c66ed45d1a00748eda0ebf3043fa1ba620
2015-04-08 15:31:00 +02:00
/**
* Removes the job associated with the given name from this trigger service.
*
* @param jobName The name of the job to remove
* @return {@code true} if the job existed and removed, {@code false} otherwise.
*/
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
public boolean remove(String jobName) {
for (TriggerEngine engine : engines.values()) {
if (engine.remove(jobName)) {
return true;
}
}
return false;
}
public void register(TriggerEngine.Listener listener) {
listeners.add(listener);
}
public TriggerEvent simulateEvent(String type, String jobId, Map<String, Object> data) {
TriggerEngine engine = engines.get(type);
if (engine == null) {
throw new TriggerException("could not simulate trigger event. unknown trigger type [{}]", type);
}
return engine.simulateEvent(jobId, data, this);
}
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
public Trigger parseTrigger(String jobName, XContentParser parser) throws IOException {
XContentParser.Token token = parser.currentToken();
assert token == XContentParser.Token.START_OBJECT;
token = parser.nextToken();
if (token != XContentParser.Token.FIELD_NAME) {
throw new TriggerException("could not parse trigger for [{}]. expected trigger type string field, but found [{}]", jobName, token);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
String type = parser.text();
token = parser.nextToken();
if (token != XContentParser.Token.START_OBJECT) {
throw new TriggerException("could not parse trigger [{}] for [{}]. expected trigger an object as the trigger body, but found [{}]", type, jobName, token);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
Trigger trigger = parseTrigger(jobName, type, parser);
token = parser.nextToken();
if (token != XContentParser.Token.END_OBJECT) {
throw new TriggerException("could not parse trigger [{}] for [{}]. expected [END_OBJECT] token, but found [{}]", type, jobName, token);
}
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
return trigger;
}
public Trigger parseTrigger(String jobName, String type, XContentParser parser) throws IOException {
TriggerEngine engine = engines.get(type);
assert engine != null;
return engine.parseTrigger(jobName, parser);
}
public TriggerEvent parseTriggerEvent(String watchId, String context, XContentParser parser) throws IOException {
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
XContentParser.Token token = parser.currentToken();
assert token == XContentParser.Token.START_OBJECT;
token = parser.nextToken();
if (token != XContentParser.Token.FIELD_NAME) {
throw new TriggerException("could not parse trigger event for [{}] for watch [{}]. expected trigger type string field, but found [{}]", context, watchId, token);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
String type = parser.text();
token = parser.nextToken();
if (token != XContentParser.Token.START_OBJECT) {
throw new TriggerException("could not parse trigger event for [{}] for watch [{}]. expected trigger an object as the trigger body, but found [{}]", context, watchId, token);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
TriggerEvent trigger = parseTriggerEvent(watchId, context, type, parser);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
token = parser.nextToken();
if (token != XContentParser.Token.END_OBJECT) {
throw new TriggerException("could not parse trigger [{}] for [{}]. expected [END_OBJECT] token, but found [{}]", type, context, token);
}
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
return trigger;
}
public TriggerEvent parseTriggerEvent(String watchId, String context, String type, BytesReference bytes) throws IOException {
XContentParser parser = XContentHelper.createParser(bytes);
parser.nextToken();
return parseTriggerEvent(watchId, context, type, parser);
}
public TriggerEvent parseTriggerEvent(String watchId, String context, String type, XContentParser parser) throws IOException {
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
TriggerEngine engine = engines.get(type);
if (engine == null) {
throw new TriggerException("Unknown trigger type [{}]", type);
}
return engine.parseTriggerEvent(this, watchId, context, parser);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
static class Listeners implements TriggerEngine.Listener {
private List<TriggerEngine.Listener> listeners = new CopyOnWriteArrayList<>();
public void add(TriggerEngine.Listener listener) {
listeners.add(listener);
}
@Override
public void triggered(Iterable<TriggerEvent> events) {
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
for (TriggerEngine.Listener listener : listeners) {
listener.triggered(events);
Introducing the `Trigger` notion Today every `watch` is associated with a `schedule`. When the watch is added to the system, its schedule is registered with the `scheduler` that is responsible to trigger the watch based on the schedule. This is effectively time based triggering of a `watch`. Thinking about it further, triggering a watch is a higher abstraction than the schedule. Many things can potentially trigger a watch - a schedule (or time based triggering) is just one example of such trigger. A `Trigger` was added to provide this abstraction. A `watch` is associated with a `trigger` not with a `schedule` directly. One type of `trigger` that can be set on a watch is a `schedule`. This abstraction will enable us much flexibility in the future as we'll be able to add other types of triggers that are not necessarily based on time. 3 examples: - we're planning to have a API that executes triggers on demand (rather than waiting for them to be triggered "naturally"). We could have a `"passive"` trigger with the intention to have a watch that can only be executed on demand. Today (with schedule only) you can achieve this by setting a `cron` schedule that is set to trigger very far in the future - but it's a hack. - In the future we plan to have changes API in elasticsearch. An interesting trigger that we might want to add is `"changes"` - an ESP (event-stream processing) trigger that listens to all (data) events in the changes API, processes them and using some sort of state machine decides to trigger a watch based on some condition. - With Shield we have audit trails. currently the only audit trail that is supported is log based (access logs). Another audit trail we'll add soon will be index based (indexing the audit info to elasticsearch). In the future, we might want to have `watcher` extend shield and add a `"watcher"` audit trail. this will effectively be a `"audit"` trigger that will trigger watches based on events arriving in the audit trail (think about notifying at real-time about a potential DDoS attack) To support this change, we needed to change existing and introduce new constructs: - A `Trigger` defines the logic of when a watch should be triggered - A `TriggerEngine` is responsible for executing the logic defined by the `Trigger` - A `TriggerEvent` is created whenever the engine triggers the trigger. The event holds relevant information (may be different for every trigger depending on its type and nature). - A `TriggerService` manages trigger engines. We currently have a single engine implementation - a `"scheduler"` trigger - `ScheduleTrigger` defines a clock/calendar based schedule on which a watch should be triggered - `QuartzScheduleEngine` a trigger engine that runs quartz scheduler which triggers the registered schedules. - `ScheduleTriggerEvent` holds the `triggered_time` (the time the trigger was actually triggered) and the `scheduled_time` (the time the trigger was scheduled to trigger) - Updated the docs Closes elastic/elasticsearch#158 Original commit: elastic/x-pack-elasticsearch@5be20917cce0aff68a9c28fff27262c67b8da8e8
2015-03-29 00:57:13 +01:00
}
}
}
}