Skip to content

Commit 24f4475

Browse files
authored
fix: example pipeline with processor (#2060)
* updates example pipeline * simplifies example
1 parent fb2ae68 commit 24f4475

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

examples/pipelines/source-processor.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ pipelines:
1515
plugin: builtin:generator
1616
settings:
1717
format.type: "structured"
18-
format.options: "id:int,name:string,company:string,trial:bool"
18+
format.options.id: int
19+
format.options.name: string
20+
format.options.company: string
21+
format.options.trial: bool
1922
recordCount: "1"
2023
processors:
2124
- id: extract-name
@@ -28,7 +31,10 @@ pipelines:
2831
plugin: builtin:generator
2932
settings:
3033
format.type: "structured"
31-
format.options: "id:int,name:string,company:string,trial:bool"
34+
format.options.id: int
35+
format.options.name: string
36+
format.options.company: string
37+
format.options.trial: bool
3238
recordCount: "2"
3339
- id: file-destination
3440
type: destination

0 commit comments

Comments
 (0)