You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### MapT - Map with event time assignment capability
64
-
In addition to the regular Map function, MapT supports assigning a new event time to the message.
65
-
MapT is only supported at source vertex to enable (a) early data filtering and (b) watermark assignment by extracting new event time from the message payload.
63
+
### SourceTransformer - Map with event time assignment capability
64
+
In addition to the regular Map function, SourceTransformer supports assigning a new event time to the message.
65
+
SourceTransformer is only supported at source vertex to enable (a) early data filtering and (b) watermark assignment by extracting new event time from the message payload.
66
66
67
67
```python
68
68
from datetime import datetime
69
-
from pynumaflow.function import MessageTs, MessageT, Datum, Server
69
+
from pynumaflow.sourcetransformer import Messages, Message, Datum, SourceTransformer
0 commit comments