We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea799ef commit b1b2d94Copy full SHA for b1b2d94
examples/sideinput/simple_sideinput/README.md
@@ -43,9 +43,28 @@ Side input spec:
43
```yaml
44
spec:
45
sideInputs:
46
- - name: vertex
47
- udf:
48
- container:
49
- ....
50
- sideInputs:
51
- - myticker
+ - name: myticker
+ container:
+ image: "quay.io/numaio/numaflow-python/sideinput-example:stable"
+ imagePullPolicy: Always
+ trigger:
+ schedule: "*/2 * * * *"
52
+
53
+```
54
55
+Vertex spec for the UDF vertex:
56
+```yaml
57
+ vertices:
58
+ .....
59
+ - name: si-log
60
+ udf:
61
62
+ image: "quay.io/numaio/numaflow-python/udf-sideinput-example:stable"
63
64
+ containerTemplate:
65
+ env:
66
+ - name: NUMAFLOW_DEBUG
67
+ value: "true" # DO NOT forget the double quotes!!!
68
+ sideInputs:
69
+ - myticker
70
0 commit comments