-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflow.yaml
45 lines (43 loc) · 1.16 KB
/
flow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import:
- word-counts.flow.yaml
captures:
acmeCo/postgres/source-documents:
endpoint:
connector:
image: ghcr.io/estuary/source-postgres:dev
config:
# Logical database name to capture from.
# [string] (required)
database: flow
# Host name of the database to connect to.
# [string] (required)
host: localhost
# User password configured within the database.
# [string] (required)
password: flow
# [integer] (required)
port: 5432
# Database user to use.
# [string] (required)
user: flow
bindings:
- resource:
namespace: public
stream: documents
syncMode: incremental
target: acmeCo/documents
materializations:
acmeCo/postgres/materialize-word-counts:
endpoint:
connector:
image: ghcr.io/estuary/materialize-postgres:dev
config:
database: flow
host: localhost
password: flow
port: 5432
user: flow
bindings:
- resource:
table: word_counts
source: acmeCo/word-counts