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

Integrate postgres into realm server #1212

Merged
merged 20 commits into from
May 3, 2024

Conversation

habdelra
Copy link
Contributor

@habdelra habdelra commented May 1, 2024

This PR enables postgres in the app 🎉

When you start your servers you can use:

PG_INDEXER=true start:all

to start the servers with postgres. Everything should be automatic--the DB will migrate automatically as part of starting the server. This introduces both the postgres based index as well as our postgres based queuing system.

you can connect to your DB using psql:

psql -h localhost -p 5435 -U postgres

Copy link

github-actions bot commented May 1, 2024

Host Tests (In-Memory Index) Test Results

607 tests  ±0   602 ✔️ ±0   10m 59s ⏱️ +11s
    1 suites ±0       5 💤 ±0 
    1 files   ±0       0 ±0 

Results for commit e8e5434. ± Comparison against base commit 9f3754f.

♻️ This comment has been updated with latest results.

Copy link

github-actions bot commented May 1, 2024

Host Tests (DB Index) Test Results

607 tests  ±0   604 ✔️ ±0   11m 46s ⏱️ +24s
    1 suites ±0       3 💤 ±0 
    1 files   ±0       0 ±0 

Results for commit e8e5434. ± Comparison against base commit 9f3754f.

♻️ This comment has been updated with latest results.

@habdelra habdelra marked this pull request as ready for review May 1, 2024 19:32
Copy link
Contributor

@backspace backspace left a comment

Choose a reason for hiding this comment

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

boxel_index — boxel_dev — boxel realm server 2024-05-02 16-31-06

nice 🤩

private handlers: Map<string, Function> = new Map();
private notifiers: Map<number, Deferred<any>> = new Map();

private jobRunner: WorkLoop | undefined;
private notificationRunner: WorkLoop | undefined;

constructor(private pgClient: PgAdapter) {}
Copy link
Contributor

Choose a reason for hiding this comment

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

I didn’t know this existed to set the property 😯

if [ -n "$PG_INDEXER" ]; then
while ! check_postgres_ready; do
printf '.'
sleep 1
Copy link
Contributor

Choose a reason for hiding this comment

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

Should there be a timeout like I’m working on adding here?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sure

printf '.'
sleep 1
done
fi
Copy link
Contributor

Choose a reason for hiding this comment

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

Since this is repeated across a few scripts, maybe it should be extracted?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sounds good

@habdelra habdelra merged commit 67f4952 into main May 3, 2024
28 checks passed
@delete-merged-branch delete-merged-branch bot deleted the cs-6639-use-postgres-indexer-in-realm-server branch May 3, 2024 18:44
await percySnapshot(assert);
// Percy is failing to capture this snapshot for some
// reason. creating issue for this CS-6780
// await percySnapshot(assert);
Copy link
Contributor

Choose a reason for hiding this comment

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

Already tracking this in CS-6767

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.

3 participants