DEFINE EVENT statement
Events allow you to define custom logic that is executed when a record is created, updated, or deleted. These events are triggered automatically within the current transaction after data modifications in the record, giving you access to the state of the record before $before and after $after the change.
Note
Key Concepts
Events: Triggered after changes (create, update, delete) to records in a table.
$event: A preset parameter containing the type of event as a string, will always be one of "CREATE", "UPDATE", or "DELETE".
$before / $after: Refer to the record state before and after the modification. Learn more about the
$beforeand$afterparameters in the parameters documentation.$value: The record in question. For a
CREATEorUPDATEevent, this will be the record after the changes were made. For aDELETEstatement, this will be the record before it was deleted.WHEN condition: Determines when the event should be triggered.
Requirements
You must be authenticated as a root owner or editor, namespace owner or editor, or database owner or editor before you can use the
DEFINE EVENTstatement.You must select your namespace and database before you can use the
DEFINE EVENTstatement.
Statement syntax
Clauses:
OVERWRITE: Replaces the existing event if it already exists.
IF NOT EXISTS: Only creates the event if it doesn't already exist.
WHEN: Conditional logic that controls whether the event is triggered. Will show up in the event definition as
WHEN trueif not specified.THEN: Specifies the action(s) to execute when the event is triggered.
COMMENT: Optional comment for describing the event.
ASYNC: Whether to run the event outside of the transaction that triggers it. Available since SurrealDB 3.0.0-beta.
Example usage
Email Change Detection: Create an event that logs whenever a user's email is updated.
In this example:
The
WHENclause checks if the email has changed.The
THENclause records this change in alogtable.
More complex logic:
Purchase Event with Multiple Actions: Log a purchase and establish relationships between the customer and product.
In this example:
We perform multiple actions when a purchase is created: establishing relationships using the RELATE statement and creating a log entry.
Specific events
You can trigger events based on specific events. You can use the variable $event to detect what type of event is triggered on the table.
Using IF NOT EXISTS clause
The IF NOT EXISTS clause can be used to define an event only if it does not already exist. You should use the IF NOT EXISTS clause when defining an event in SurrealDB if you want to ensure that the event is only created if it does not already exist. If the event already exists, the DEFINE EVENT statement will return an error.
It's particularly useful when you want to safely attempt to define a event without manually checking its existence first.
On the other hand, you should not use the IF NOT EXISTS clause when you want to ensure that the event definition is updated regardless of whether it already exists. In such cases, you might prefer using the OVERWRITE clause, which allows you to define a event and overwrite an existing one if it already exists, ensuring that the latest version of the event definition is always in use
Using OVERWRITE clause
The OVERWRITE clause can be used to define an event and overwrite an existing one if it already exists. You should use the OVERWRITE clause when you want to modify an existing event definition. If the event already exists, the DEFINE EVENT statement will overwrite the existing event definition with the new one.
Events and permissions
Queries inside the event always execute without any permission checks, even when triggered by changes made by the currently authenticated user. This can be very useful to perform additional checks and changes that involve tables/records that are inaccessible for the user.
Consider a CREATE query sent by a record user that has CREATE access to the comment table only:
By having the following event defined, SurrealDB will perform the additional checks and changes:
Accessing $input in events
The behaviour of events can be further refined via the $input parameter, which represents the record in question for the event.
Output:
Async events
Events in SurrealDB are executed synchronously within the same transaction that triggers them. While this ensures consistency, it can lead to increased latency for write operations if the event logic is complex or resource intensive.
To allow events to execute independently of the transaction that triggers them, the ASYNC clause can be used.
How async events are processed
Async events are processed in an interval dependant on the environment variable SURREAL_ASYNC_EVENT_PROCESSING_INTERVAL (or --async-event-interval when starting the server) which is set to 5 seconds as the default. Lowering this will reduce the latency between a document change and its events, while leading to more frequent polls by the background worker.
Some more notes on the characteristics of async events:
Atomicity: The event is enqueued within the same transaction as the document change. If the transaction fails, the event is never queued.
Consistency: Asynchronous events run in a separate transaction from the original change. They see the database state at the time they are executed.
Ordering: Events are generally processed in the order they were created, though parallel processing may occur within a single batch.
The easiest way to demonstrate that async events do not occur in the same transaction is by causing one to throw an error. As an error inside any part of a transaction will cause the transaction to fail and roll back, the following event which fails about 50% of the time would cause the CREATE statement that follows to fail if it were not async. As an async event, however, the events that follow the statement are each run in their own transaction
The MAXDEPTH clause
The MAXDEPTH clause is used to set the maximum number of times that an async event can be triggered. The number following this can range from 0 to 16.
The default for MAXDEPTH is 3, as events defined on other events that lead to record creation can quickly spiral out of control at greater levels.
Taking the following contrived example:
While the MAXDEPTH in this case is only one greater than the default, the sheer number of records created results in the final count() score being 20503, compared to 2278 if the default is used.
This is somewhat similar to recursive queries which can also quickly add up.
The RETRY clause
The RETRY clause is suitable for events that may fail but can succeed on successive attempts.
The example below shows two events that each have a 50% chance of failure and zero retries.
Following up these events with a SELECT * FROM it will most likely lead to the following input.
However, with zero retries there is still a 25% chance that the query will only ever lead to the error "The table 'it' does not exist".