Trigger for Data Streams that invokes a Cloud Functions function
Written by
Updated at December 20, 2024
Trigger for Data Streams calls a Cloud Functions function when data is sent to a stream.
A trigger for Data Streams needs service accounts to manage a stream and invoke a function. You can use the same service account for both operations.
For more information about creating a trigger for Data Streams, see Creating a trigger for Data Streams that invokes a Cloud Functions function.
Roles required for the proper operation of a trigger for Data Streams
- To create a trigger, you need a permission for the service account under which the trigger executes the operation. This permission comes with the iam.serviceAccounts.user and editor roles or higher.
- For the trigger to fire, service accounts need the following roles:
functions.functionInvoker
for the function the trigger invokes.yds.admin
for the stream that invokes the trigger when data is sent there.
Format of the message from the trigger for Data Streams
The trigger for Data Streams accepts and sends messages in JSON
Once the trigger fires, it will send a message with the messages
array to the function:
{
"messages":[
{
"key1":"value1"
},
{
"key2":"value2"
}
]
}