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
Copy file name to clipboardexpand all lines: examples/README.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
# NumaFlow by Example
2
2
3
-
Welcome to the NumaFlow Community! This document provides an example-byexample guide to using NumaFlow.
3
+
Welcome to the NumaFlow Community! This document provides an example-by-example guide to using NumaFlow.
4
4
5
5
If you haven't already, install NumaFlow by following the [QUICK START](../docs/QUICK_START.md) instructions.
6
6
7
-
The top-level abstraction in NumaFlow is the `Pipeline`. A `Pipeline` consists of a set of `vertices` connected by `edges`. A vertex can be a `source`, `sink`, or `processing` vertex. In the example below, we have a source vertex named *input* that generates messages at a specified rate, a sink vertex named *ouput* that logs messages, and a processing vertex named *cat* that produces any input message as output. Lastly, there are two edges, one connecting the *input* to the *cat* vertex and another connecting the *cat* to the *output* vertex. The resulting pipeline simply copies internally generated messages to the log.
7
+
The top-level abstraction in NumaFlow is the `Pipeline`. A `Pipeline` consists of a set of `vertices` connected by `edges`. A vertex can be a `source`, `sink`, or `processing` vertex. In the example below, we have a source vertex named *in* that generates messages at a specified rate, a sink vertex named *out* that logs messages, and a processing vertex named *cat* that produces any input message as output. Lastly, there are two edges, one connecting the *in* to the *cat* vertex and another connecting the *cat* to the *out* vertex. The resulting pipeline simply copies internally generated messages to the log.
8
8
```yaml
9
9
apiVersion: numaflow.numaproj.io/v1alpha1
10
10
kind: Pipeline
11
11
metadata:
12
12
name: simple-pipeline
13
13
spec:
14
14
vertices:
15
-
- name: input
15
+
- name: in
16
16
source:
17
17
# Generate 5 messages every second
18
18
# xxx what does rpu stand for? how large are the messages by default, what data is contained in the message? rename duration to interval?
@@ -23,18 +23,18 @@ spec:
23
23
udf: # A user defined function
24
24
builtin: # Use a builtin function as the udf
25
25
name: cat # cats the message
26
-
- name: output
26
+
- name: out
27
27
sink:
28
28
# Output message to the log
29
29
# xxx which log? k8s events?
30
30
log: {}
31
31
32
-
#input -> cat -> output
32
+
#in -> cat -> out
33
33
edges:
34
-
- from: input
34
+
- from: in
35
35
to: cat
36
36
- from: cat
37
-
to: output
37
+
to: out
38
38
```
39
39
40
40
Below we have a simple variation on the above example that takes input from an http endpoint.
@@ -45,7 +45,7 @@ metadata:
45
45
name: http-pipeline
46
46
spec:
47
47
vertices:
48
-
- name: input
48
+
- name: in
49
49
source:
50
50
http:
51
51
# Whether to create a ClusterIP Service, defaults to false
@@ -62,26 +62,26 @@ spec:
62
62
udf:
63
63
builtin:
64
64
name: cat # A builtin UDF which simply cats the message
65
-
- name: output
65
+
- name: out
66
66
sink:
67
67
# A simple log printing sink
68
68
log: {}
69
69
edges:
70
-
- from: input
70
+
- from: in
71
71
to: cat
72
72
- from: cat
73
-
to: output
73
+
to: out
74
74
```
75
75
76
-
Let's modify the UDF in the first example to passthrough only messages with an *id* less than 100
76
+
Let's modify the UDF in the first example to pass-through only messages with an *id* less than 100
0 commit comments