
Supported Versions:
Connection Process:

Select "Database Connector"
Choose PostgreSQL
Enter Connection Details:
Host: postgres.company.com
Port: 5432
Database: production_db
Schema: public
Username: readonly_user
Password: ••••••••••
SSL Mode: Require
Test Connection:
✓ Connection successful
Detected 145 tables
Select Table/View:

Available Tables:
☐ customers
☑ customer_transactions ← Selected
☐ orders
☐ products
Review Schema:

Imported Schema from: customer_transactions
Columns (8):
- transaction_id (uuid, primary key)
- customer_id (uuid, foreign key → customers.id)
- transaction_date (timestamp)
- amount (numeric(10,2))
- currency_code (varchar(3))
- status (varchar(20))
- created_at (timestamp)
- updated_at (timestamp)
Configure Sync:
Sync Mode: Real-time (CDC)
Sync Frequency: Continuous
Initial Load: Full table
Incremental: Track by updated_at
Supported Data Types:
Performance Optimization:
☑ Use read replica (recommended)
☑ Limit columns (select only needed)
☑ Add indexes on updated_at
☑ Configure batch size (default: 1000)
☑ Enable compression
Supported Versions:
Connection Process:
Similar to PostgreSQL, with MySQL-specific settings:
Host: mysql.company.com
Port: 3306
Database: app_database
Username: readonly_user
Password: ••••••••••
SSL: Enabled
SSL CA: /path/to/ca.pem
Supported Data Types:
Performance Optimization:
☑ Use read replica
☑ Configure binlog retention
☑ Limit column selection
☑ Batch size: 1000 rows
☑ Enable row compression
Server Requirements:
PostgreSQL Version: 11.0 or higher
Memory: 2GB minimum
Disk: SSD recommended
Required Permissions:
GRANT SELECT ON table_name TO readonly_user;
GRANT REPLICATION SLAVE TO readonly_user; -- For CDC
Server Requirements:
MySQL Version: 5.7 or higher
Memory: 2GB minimum
Binary logging: Enabled (for CDC)
Required Permissions:
GRANT SELECT, REPLICATION SLAVE, REPLICATION CLIENT
ON *.* TO readonly_user@'%';
Second Normal Form (2NF): Fully supported
Third Normal Form (3NF): Supported
Recommendation: Use 3NF for master data, allow some denormalization for analytical queries.