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
| CONNECTOR | Absolute path to connector class. Defaults by engine: `dbbackup.db.sqlite.SqliteBackupConnector` (sqlite3), `dbbackup.db.mysql.MysqlDumpConnector` (mysql), `dbbackup.db.postgresql.PgDumpConnector` (postgresql), `dbbackup.db.postgresql.PgDumpGisConnector` (postgis), `dbbackup.db.mongodb.MongoDumpConnector` (django_mongodb_engine), `dbbackup.db.django.DjangoConnector` (fallback / any unmapped). Prometheus wrappers are also supported mapping to the same connectors. | Auto-detected from `ENGINE`|
40
-
| EXCLUDE | List of table names to exclude from dump (may be unsupported for raw file copy snapshot approaches). Example below. | None |
41
-
| EXTENSION | File extension used for the generated dump archive. |`dump`|
| CONNECTOR | Absolute path to connector class. For example: `dbbackup.db.django.DjangoConnector`. Prometheus wrappers are also supported mapping to the same connectors. | Auto-detected from `ENGINE`|
40
+
| EXCLUDE | List of table names to exclude from dump (may be unsupported for raw file copy snapshot approaches). Example below. | None |
41
+
| EXTENSION | File extension used for the generated dump archive. |`dump`|
42
42
43
43
Example for `EXCLUDE` usage:
44
44
@@ -95,7 +95,7 @@ This connector can be used to restore a backup to an existing (dirty) database d
95
95
96
96
The `dbbackup.db.sqlite.SqliteCPConnector` connector can be used to make a simple raw copy of your database file, like a snapshot.
97
97
98
-
In-memory databases are **not** dumpable with it. Since it works by copying the database file directly, it is not suitable for databases that are have active connections.
98
+
In-memory databases are **not** dumpable with it. Since it works by copying the database file directly, it is not suitable for databases that have ongoing connections.
99
99
100
100
### MySQL
101
101
@@ -214,7 +214,7 @@ The Django connector is ideal for:
214
214
### Limitations
215
215
216
216
-**Performance**: Slower than native database tools for large datasets
217
-
-**Database structure**: Only backs up data, not database schema, indices, or procedures
217
+
-**Database structure**: Only provides backups of data; not database schema, indices, or procedures
0 commit comments