Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add table option to skip empty updates #66

Open
wants to merge 1 commit into
base: update-metadata
Choose a base branch
from

Conversation

simolus3
Copy link
Contributor

For updates on views that happen to not change any columns (e.g. a SET col = LOWER(col) where all values in col were already in lower case), we currently insert an empty update operation into the local upload queue. While this can be resolved by users rewriting SQL statements and typically shouldn't make up a bulk of the queue, we've seen a report claiming that skipping empty updates speeds up uploads: powersync-ja/powersync-kotlin#144.

Ignoring empty updates entirely might break users relying on the current behavior, so this adds an opt-in option to ignore schema updates. For this, the powersync_crud_ vtab gains a new hidden column with option flags that can be set for inserts. FLAG_INCLUDE_EMPTY_UPDATE, which is enabled by default, preserves the current behavior. Clearing that flag, which the generated views do when the ignore_empty_update option is set on the JSON schema description for a table, willl make the vtab ignore empty updates.

Copy link
Contributor

@rkistner rkistner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy with the approach

fn begin_impl(tab: &mut VirtualTable) -> Result<(), SQLiteError> {
let db = tab.db;

let insert_statement = db.prepare_v3("INSERT INTO ps_crud(tx_id, data) VALUES (?1, ?2)", 0)?;
const SQL: &str = formatcp!("\
WITH insertion (tx_id, data) AS (VALUES (?1, ?2))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To check if there is data in the patch, it might be more efficient to just check data->'data' != '{}' - json_each could potentially add some overhead here. I haven't done any actual benchmarks though - the overhead may be negligible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants