Skip to content

Commit 20774b1

Browse files
committed
fix: tinybird docs missing steps
Signed-off-by: Gašper Grom <gasper.grom@gmail.com>
1 parent 1a9821f commit 20774b1

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

services/libs/tinybird/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,14 @@ ALTER TABLE public."tableName" REPLICA IDENTITY FULL;
9898
3. (only for PROD) u need to create the topic in oracle kafka, it doesn't get created automaticly
9999
4. Update tinybird kafka connect plugin env ( it's under crowd-kube/lf-prod-oracle(lf-staging-oracle)/kafka-connect/tinybird-sink.properties.enc ), there are list of tracked files in the decrypted file.
100100
5. Restart kafka-connect
101-
6. Create sequin sinks for new tables
102-
7. Create tinybird datasources
103-
8. Backfill from sequin
101+
6. Create tinybird datasource schema and push it to tinybird
102+
7. Add access to the table to sequin user in postgres
103+
```sql
104+
GRANT SELECT ON "tableName" to sequin;
105+
```
106+
8. Create sequin sinks for new tables
107+
9. Create tinybird datasources
108+
10. Backfill from sequin
104109

105110
---
106111

0 commit comments

Comments
 (0)