Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 599 Bytes

user-defined-functions.md

File metadata and controls

13 lines (9 loc) · 599 Bytes

A Pipeline consists of multiple vertices, Source, Sink and UDF(User Defined Functions).

User Defined Functions (UDF) is the vertex where users can run custom code to transform the data. Data processing in the UDF is supposed to be idempotent.

UDF runs as a sidecar container in a Vertex Pod, processes the received data. The communication between the main container (platform code) and the sidecar container (user code) is through gRPC over Unix Domain Socket.

There are two kinds of processing users can run