-
Notifications
You must be signed in to change notification settings - Fork 217
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
wip: change interactive_one to read/write from/to FS device. #330
base: main
Are you sure you want to change the base?
Conversation
Built bundles: |
ebdd8af
to
9fbeae8
Compare
+#define PGS_IN "/tmp/pglite/base/.s.PGSQL.5432.in" | ||
+#define PGS_OLOCK "/tmp/pglite/base/.s.PGSQL.5432.lock.out" | ||
+#define PGS_OUT "/tmp/pglite/base/.s.PGSQL.5432.out" | ||
+#define PGS_ILOCK "/tmp/pglite/.s.PGSQL.5432.lock.in" |
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.
potential problem is when mounting a db path under node running native, it is the only directory shared with host : /tmp/pglite is only MEMFS so other processes cannot use the socket file (eg to make a unix socket gateway ). /tmp/pglite/base is expected to be in raw mounted fs
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 move them as it doesn't seem to be possible to mount a device inside /tmp/pglite/base
with the NodeFS, it throws a FS error.
b9e3b91
to
409c7fa
Compare
7ab2382
to
2553edc
Compare
No description provided.