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

sqlite: add timeout options to DatabaseSync #57752

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

geeksilva97
Copy link
Contributor

No description provided.

@nodejs-github-bot
Copy link
Collaborator

Review requested:

  • @nodejs/sqlite

@geeksilva97 geeksilva97 added the wip Issues and PRs that are still a work in progress. label Apr 5, 2025
@nodejs-github-bot nodejs-github-bot added c++ Issues and PRs that require attention from people who are familiar with C++. needs-ci PRs that need a full CI run. sqlite Issues and PRs related to the SQLite subsystem. labels Apr 5, 2025
@@ -116,6 +116,8 @@ added: v22.5.0
and the `loadExtension()` method are enabled.
You can call `enableLoadExtension(false)` later to disable this feature.
**Default:** `false`.
* `timeout` {number} Number of milliseconds to wait for the database to
Copy link
Contributor

Choose a reason for hiding this comment

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

I think we should define this in terms of a busy timeout and link to https://www.sqlite.org/c3ref/busy_timeout.html because I'm not sure everyone will understand what this does.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Much better. Will do this.

@geeksilva97 geeksilva97 force-pushed the sqlite-dbsync-add-timeout branch from 47ee71b to 2913993 Compare April 5, 2025 12:25
});
});

test('trhows if lock is holden longer than the provided timeout', (t, done) => {
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
test('trhows if lock is holden longer than the provided timeout', (t, done) => {
test('throws if lock is held longer than the provided timeout', (t, done) => {

conn.exec('CREATE TABLE data (key INTEGER PRIMARY KEY, value TEXT)');

// Spawns a child process to locks the database for 1 second
const child = spawn('./node', [fixturesPath('sqlite/lock-db.js'), databasePath], {
Copy link
Contributor

Choose a reason for hiding this comment

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

Does this need to happen in a child process? Would it work to create a second database connection in the same process?


conn.exec('BEGIN EXCLUSIVE TRANSACTION');
process.send('locked');
setTimeout(() => {
Copy link
Contributor

Choose a reason for hiding this comment

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

I think we should try to avoid relying on setTimeout() as that will almost certainly make the tests prone to being flaky or inefficient in the CI. I think we could rely on message passing (or hopefully move this logic out of a child process and into the same process as the test) instead of a timeout.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c++ Issues and PRs that require attention from people who are familiar with C++. needs-ci PRs that need a full CI run. sqlite Issues and PRs related to the SQLite subsystem. wip Issues and PRs that are still a work in progress.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants