File tree Expand file tree Collapse file tree 1 file changed +25
-6
lines changed
examples/sideinput/simple_sideinput Expand file tree Collapse file tree 1 file changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,28 @@ Side input spec:
43
43
``` yaml
44
44
spec :
45
45
sideInputs :
46
- - name : vertex
47
- udf :
48
- container :
49
- ....
50
- sideInputs :
51
- - myticker
46
+ - name : myticker
47
+ container :
48
+ image : " quay.io/numaio/numaflow-python/sideinput-example:stable"
49
+ imagePullPolicy : Always
50
+ trigger :
51
+ schedule : " */2 * * * *"
52
+
53
+ ```
54
+
55
+ Vertex spec for the UDF vertex:
56
+ ``` yaml
57
+ vertices :
58
+ .....
59
+ - name : si-log
60
+ udf :
61
+ container :
62
+ image : " quay.io/numaio/numaflow-python/udf-sideinput-example:stable"
63
+ imagePullPolicy : Always
64
+ containerTemplate :
65
+ env :
66
+ - name : NUMAFLOW_DEBUG
67
+ value : " true" # DO NOT forget the double quotes!!!
68
+ sideInputs :
69
+ - myticker
70
+ ` ` `
You can’t perform that action at this time.
0 commit comments