Pre-built Database
Description — How to handle pre-built databases in your Couchbase Lite on Android app
Abstract — This content explains how to include a snapshot of a pre-built database in your package to shorten initial sync time and reduce bandwidth use
Overview
Couchbase Lite supports pre-built databases. You can pre-load your app with data instead of syncing it from Sync Gateway during startup to minimize consumer wait time (arising from data setup) on initial install and launch of the application.
Avoiding an initial bulk sync reduces startup time and network transfer costs.
It is typically more efficient to download bulk data using the http/ftp stream employed during the application installation than to install a smaller application bundle and then use a replicator to pull in the bulk data.
Pre-loaded data is typically public/shared, non-user-specific data that is static. Even if the data is not static, you can still benefit from preloading it and only syncing the changed documents on startup.
The initial sync of any pre-built database pulls in any content changes on the server that occurred after its incorporation into the app, updating the database.
Creating Pre-built database
These steps should form part of your build and release process:
-
Create a fresh Couchbase Lite database (every time)
Always start with a fresh database for each app version; this ensures there are no checkpoint issues
Otherwise: You will invalidate the cached checkpoint in the packaged database, and instead reuse the same database in your build process (for subsequent app versions).
-
Pull the data from Sync Gateway into the new Couchbase Lite database
Ensure the replication used to populate Couchbase Lite database uses the exact same remote URL and replication config parameters (channels and filters) as those your app will use when it is running.
Otherwise: … there will be a checkpoint mismatch and the app will attempt to pull the data down again
Don’t, for instance, create a pre-built database against a staging Sync Gateway server and use it within a production app that syncs against a production Sync Gateway.
You can use the cblite tool (
cblite cp
) for this — see: cblite cp (export, import, push, pull) | cblite on GitHubAlternatively …-
You can write a simple CBL app to just initiate the required pull sync — see: Remote Sync Gateway
-
A third party community Java app is available. It provides a UI to create a local Couchbase Lite database and pull data from a Sync Gateway database — see: CouchbaseLite Tester
Couchbase accepts no responsibility for the ongoing availability, maintenance, or support of this third party community contribution, nor for the provision of support for issues arising from its use.
-
-
Create the same indexes the app will use (wait for the replication to finish before doing this).
Bundle a Database with an Application
Copy the database into your app package.
Put it in an appropriate place (for example, an assets or resource folder).
Where the platform permits you can zip the database.
Alternatively … rather than bundling the database within the app, the app could pull the database down from a CDN server on launch.
Database Encryption
This is an Enterprise Edition feature. |
If you are using an encrypted database, Database.copy() does not change the encryption key. The encryption key specified in the config when opening the database is the encryption key used for both the original database and copied database.
If you copied an un-encrypted database and want to apply encryption to the copy, or if you want to change (or remove) the encryption key applied to the copy:
-
Provide the original encryption-key (if any) in the database copy’s configuration using DatabaseConfiguration.setEncryptionKey()
-
Open the database copy
-
Use Database.changeEncryptionKey() on the database copy to set the required encryption key.
NOTE: To remove encryption on the copy, provide a null encryption-key
Using Pre-built Database on App Launch
During the application start-up logic, check if database exists in the required location, and if not:
-
Locate the pre-packaged database (for example, in the assets or other resource folder)
-
Copy the pre-packaged database to the required location
Use the API’s Database.copy() method — see: Example 1; this ensures that a UUID is generated for each copy
Do not copy the database using any other method
Otherwise: Each copy of the app will invalidate the other apps' checkpoints because a new UUID was not generated. -
Open the database; you can now start querying the data and using it
-
Start a pull replication, to sync any changes
The replicator uses the pre-built database’s checkpoint as the timestamp to sync from; only documents changed since then are synced
If you used cblite to pull the data without including a port number with the URL and are replicating in a Java or iOS (swift/ObjC) app — you must include the port number in the URL provided to the replication (port 443 for
wss://
or 80 forws://
).Otherwise: You will get a checkpoint mismatch.
This is caused by a URL discrepancy, which arises becausecblite
automatically adds the default port number when none is specified, but the Java and iOS (swift/ObjC) replicators DO NOT.Start your normal application logic immediately, unless it is essential to have the absolute up-to-date data set to begin. That way the user is not kept hanging around watching a progress indicator. They can begin interacting with your app whilst any out-of-data data is being updated.
-
Kotlin
-
Java
// Note: Getting the path to a database is platform-specific.
// For Android you need to extract the database from your assets
// to a temporary directory and then copy it, using Database.copy()
if (Database.exists("travel-sample", context.filesDir)) {
return
}
ZipUtils.unzip(getAsset("travel-sample.cblite2.zip"), context.filesDir)
Database.copy(
File(context.filesDir, "travel-sample"),
"travel-sample",
DatabaseConfiguration()
)
// Note: Getting the path to a database is platform-specific.
if (!Database.exists("travel-sample", appDbDir)) {
File tmpDir = new File(System.getProperty("java.io.tmpdir"));
ZipUtils.unzip(Utils.getAsset("travel-sample.cblite2.zip"), tmpDir);
File path = new File(tmpDir, "travel-sample");
Database.copy(path, "travel-sample", new DatabaseConfiguration());
}