add superset airbyte setup and merge md file

This commit is contained in:
jigoong
2026-03-02 21:58:51 +07:00
parent 550d926139
commit 6f6009d63e
15 changed files with 1220 additions and 19 deletions

View File

@@ -0,0 +1,14 @@
-- Create databases for Airbyte OSS
-- These databases will be used by the Airbyte deployment in 04-ingestion
-- Main Airbyte database
CREATE DATABASE airbyte;
-- Temporal workflow engine databases
CREATE DATABASE temporal;
CREATE DATABASE temporal_visibility;
-- Grant permissions to postgres user
GRANT ALL PRIVILEGES ON DATABASE airbyte TO postgres;
GRANT ALL PRIVILEGES ON DATABASE temporal TO postgres;
GRANT ALL PRIVILEGES ON DATABASE temporal_visibility TO postgres;