Client Architecture
Reading and Writing Data
From the client-side perspective, there are two data flow paths:
-
Reading data from the server or downloading data (to the SQLite database)
-
Writing changes back to the server, or uploading data (from the SQLite database)
Reading Data
App clients always read data from a local SQLite database. The local database is asynchronously hydrated from the PowerSync Service.
A developer configures Sync Rules for their PowerSync instance to control which data is synced to which users.
The PowerSync Service connects directly to the backend database and uses a change stream to hydrate dynamic data partitions, called sync buckets. Sync buckets are used to partition data according to the configured Sync Rules. (In most use cases, only a subset of data is required in a client’s database and not a copy of the entire backend database.)
The local SQLite database embedded in the PowerSync SDK is automatically kept in sync with the backend database, based on the Sync Rules configured by the developer:
Writing Data
Client-side data modifications, namely updates, deletes and inserts, are persisted in the embedded SQLite database as well as stored in an upload queue. The upload queue is a blocking FIFO queue that gets processed when network connectivity is available.
Each entry in the queue is processed by writing the entry to your existing backend application API, using a function defined by you (the developer). This is to ensure that existing backend business logic is honored when uploading data changes. For more information, see the section on integrating with your backend.
Schema
On the client, the application defines a schema with tables, columns and indexes.
These are then usable as if they were actual SQLite tables, while in reality these are created as SQLite views.
The client SDK maintains the following tables:
-
ps_data__<table>
This contains the data for<table>
, in JSON format. This table’s schema does not change when columns are added, removed or changed. -
ps_data_local__<table>
Same as the above, but for local-only tables. -
<table>
(VIEW) - this is a view on the above table, with each defined column extracted from the JSON field. For example, a “description” text column would beCAST(data ->> '$.description' as TEXT)
. -
ps_untyped
- Any synced table that does is not defined in the client-side schema is placed here. If the table is added to the schema at a later point, the data is then migrated tops_data__<table>
. -
ps_oplog
- This is data as received by the PowerSync Service, grouped per bucket. -
ps_crud
- The local upload queue. -
ps_buckets
- A small amount of metadata for each bucket. -
ps_migrations
- Table keeping track of SDK schema migrations.
Most rows will be present in at least two tables — the ps_data__<table>
table, and in ps_oplog
. It may be present multiple times in ps_oplog
, if it was synced via multiple buckets.
The copy in ps_oplog
may be newer than the one in ps_data__<table>
. Only when a full checkpoint has been downloaded, will the data be copied over to the individual tables. If multiple rows with the same table and id has been synced, only one will be preserved (the one with the highest op_id
).
Was this page helpful?