-
Notifications
You must be signed in to change notification settings - Fork 9
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
Conversation
…g index WIP requests to talk to server while it is being built up
…indexer-in-realm-server
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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) {} |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good
…indexer-in-realm-server
await percySnapshot(assert); | ||
// Percy is failing to capture this snapshot for some | ||
// reason. creating issue for this CS-6780 | ||
// await percySnapshot(assert); |
There was a problem hiding this comment.
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
This PR enables postgres in the app 🎉
When you start your servers you can use:
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: