You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ HA is a highly available SQLite cluster powered by an embedded NATS JetStream se
28
28
- 📝 **Read/Write Replicas**: Create live local read/write replicas with [go-ha database/sql driver](https://github.com/litesql/go-ha)
29
29
- 📚 **Read Replicas**: Create live local read replicas with [ha-sync SQLite extension](https://github.com/litesql/ha-sync)
30
30
- 🔄 **Change Data Capture (CDC)**: Supports CDC for real-time data streaming
31
+
- 🔌 **Proxy**: Proxy and replicate PostgreSQL or MySQL databases to the edge
31
32
- ⚙️ **Cluster Modes**: Configure leader-based or leaderless clusters with custom conflict resolution strategies
32
33
- 📚 **Cross-Shard Queries**: Execute queries across shards using SQL hints like `/*+ db=DSN */`
33
34
- 🔄 **Transaction Undo**: Supports undo operations on committed transactions, allowing rollback to previous states
| --pg-proxied | HA_PG_PROXIED ||DSN of the source PostgreSQL database to replicate from and proxy to |
530
+
| --pg-publication | HA_PG_PUBLICATION | ha_publication | Name of the publication in the source PostgreSQL database for logical replication (used only when --pg-proxied is specified) |
531
+
| --pg-slot | HA_PG_SLOT | ha_slot | Name of the replication slot to create in the source PostgreSQL database (used only when --pg-proxied is specified) |
532
+
| --proxy-local | HA_PROXY_LOCAL | ha.db | Path to the local SQLite database file that proxies the source database (used only when --pg-proxied or --mysql-proxied is set) |
533
+
| --proxy-use-schema | HA_PROXY_USE_SCHEMA | false | Create local tables using the schema from the source database (used only when --pg-proxied or --mysql-proxied is set) |
534
+
| --proxy-disable-redirect | HA_PROXY_DISABLE_REDIRECT | false | Disable redirecting queries to the source database; all queries will run on the local HA SQLite database (used only when --pg-proxied or --mysql-proxied is set) |
521
535
| --concurrent-queries | HA_CONCURRENT_QUERIES | 50 | Number of concurrent queries (DB pool max) |
522
536
| --extensions | HA_EXTENSIONS || Comma-separated list of SQLite extensions path to load |
0 commit comments