-
Notifications
You must be signed in to change notification settings - Fork 89
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
feat: hot server reload & debugging over docker #2718
Conversation
- works to restart servers when changing index.js inside docker (as an intermediate test)
✅ Deploy Preview for brilliant-pasca-3e80ec canceled.
|
localenv/README.md
Outdated
### Debugging | ||
|
||
Debuggers for the services are exposed on the following ports: | ||
|
||
| IP and Port | Services | | ||
| -------------- | ----------------------- | | ||
| 127.0.0.1:9229 | Cloud Nine Backend | | ||
| 127.0.0.1:9230 | Cloud Nine Auth | | ||
| 127.0.0.1:9231 | Happy Life Bank Backend | | ||
| 127.0.0.1:9232 | Happy Life Bank Auth | | ||
|
||
To use these debuggers with a chromium browser: | ||
|
||
- go to `chrome://inspect` in chromium browser | ||
- Click "Configure" add the IP addresses and ports detailed above | ||
- start docker containers | ||
- click "inspect" on the service you want to debug to open the chromium debugger | ||
|
||
You can either trigger the debugger by adding `debugger` statements in code and restarting, or by adding breakpoints directly in the chromium debugger after starting the docker containers. | ||
|
||
For more ways to connect to these debuggers, see the Node docs for debugging: https://nodejs.org/en/learn/getting-started/debugging | ||
|
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 wanted to provide specific instructions for a basic way to use the debugger despite the fact that everyone is liable to have a different setup (vscode, jetbrains, text editor, etc.). Thus I provided instructions for setting up the chromium debugging client and left a link to the node docs if people want to tune it more for their own setup.
Of course this does require a chromium browser, but it's still the most developer-environment-agnostic option. Note that it's not possible to use safari, firefox, or any non-chromium browser because node uses the v8 engine, and those browsers do not.
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.
Please let me know if you can follow these instructions to start using the debugger successfully.
@@ -21,7 +21,7 @@ async function callWithRetry(fn: () => any, depth = 0): Promise<void> { | |||
try { | |||
return await fn() | |||
} catch (e) { | |||
if (depth > 7) { | |||
if (depth > 10) { |
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.
the new startup command in the dockerfile takes longer because we have to rebuild and copy over gql/openapi schemas. 9 was all that was required but figured I'd bump it to 10 for some headroom.
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.
Do we still need to change this with ts-node-dev?
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.
no we dont, changed back to 7
packages/auth/package.json
Outdated
@@ -18,7 +18,8 @@ | |||
"prepack": "pnpm build", | |||
"postinstall": "pnpm copy-op-schemas", | |||
"copy-op-schemas": "cp ./node_modules/@interledger/open-payments/dist/openapi/specs/auth-server.yaml ./node_modules/@interledger/open-payments/dist/openapi/specs/schemas.yaml ./src/openapi/specs/", | |||
"copy-files": "cp src/graphql/schema.graphql dist/graphql/ && cp -r ./src/openapi ./dist/" | |||
"copy-files": "cp src/graphql/schema.graphql dist/graphql/ && cp -r ./src/openapi ./dist/", | |||
"dev": "nodemon --watch src --ext ts --exec \"tsc && pnpm copy-files && node --inspect=0.0.0.0:9229 dist/index.js\"" |
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.
This is run from the dev dockerfile. In plain english, it is:
rebuilding, copying over the gql/openapi schema files, and starting the sever with the debugger. Then on the docker container's src file change, it is repeating this rebuild/copy/server start. The docker container's /src
dir mirrors the host machine's /src
dir via a bind mount. Thus saving changes on the host machine triggers the server restart in docker.
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.
Alternatives I considered included:
- using
ts-node
instead of explicit build step. Never really liked the idea but its the more common use-case with nodemon. Tried it briefly but ran into some typescript errors and didn't pursue it further. - Docker Compose Watch. This could be used to varying extents. Effectively replacing nodemon, or replacing nodemon and bind mount. However we dont really take advantage of the advantages over bind mounts listed in the docs and it would create more overheard on restart (restarts entire container instead of just server process).
- I had a sort of vague idea about doing a bind mount on
/dist
instead and adding something to watch on the hostmachine (tacked ontolocalenv:compose
andlocalenv:compose:psql probably)
, but then we'd still need to watch the /dist in docker as well. Overall I felt like this was more complicated.
@@ -110,7 +122,7 @@ services: | |||
image: rafiki-frontend | |||
build: | |||
context: ../.. | |||
dockerfile: ./packages/frontend/devDockerfile | |||
dockerfile: ./packages/frontend/Dockerfile.dev |
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.
went ahead and renamed this for consistency. I went with Dockerfile.dev
because that seemed to be a more standard convention from examples I saw a variety of places. VSCode also recognizes its a dockerfile from name alone, whereas it did not with devDockerfile
.
It's not a factor in these changes, but I noticed we have docker-compose in our services, like rafiki/packages/backend/docker-compose.yml. Why? As far as I can tell they are unused. Do we need them? Should I get rid of them? |
I considered adding a CI step for checking that frontend starts OK with the production image. This is not trivial to setup since frontend depends on quite a few things (kratos, backend db, etc.). It would also be completely redundant if we |
@BlairCurrey curious to hear your thoughts on debugging the complied JS files or the TS files directly. I tried using {
"name": "Attach to docker (cloud-nine-backend)",
"type": "node",
"request": "attach",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/rafiki/",
"restart": true
}, Let me know what feels better/what issues you had when trying TS, but it was quite nice debugging the files we end up writing. |
Thanks for sharing this - seems promising. I like that we dont have to copy files every change (since they arent being wiped out by building). |
@@ -139,6 +139,28 @@ Note that you have to go through an additional "login" step by providing you IPv | |||
|
|||
After stopping the script it is necessary to clear the environment using the command described in [Shutting down](#Shutting-down). This is necessary as on a new run of the scripts (with autopeering or not) the wallet address url will differ. | |||
|
|||
### Debugging |
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.
Maybe we can add a section with the launch.json configuration for VSCode as well?
Also, did you want to keep it just in this readme, or should we also add it to the documentation site?
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.
added the vscode section and added to the documentation site: 02a5e6b
@@ -21,7 +21,7 @@ async function callWithRetry(fn: () => any, depth = 0): Promise<void> { | |||
try { | |||
return await fn() | |||
} catch (e) { | |||
if (depth > 7) { | |||
if (depth > 10) { |
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.
Do we still need to change this with ts-node-dev?
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.
v minor comments
packages/auth/package.json
Outdated
@@ -66,6 +68,7 @@ | |||
"jest-openapi": "^0.14.2", | |||
"nock": "^13.5.4", | |||
"node-mocks-http": "^1.14.1", | |||
"nodemon": "^3.1.0", |
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.
"nodemon": "^3.1.0", |
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.
good catch, committed locally and updated the lockfile
Co-authored-by: Max Kurapov <max@interledger.org>
Co-authored-by: Max Kurapov <max@interledger.org>
Changes proposed in this pull request
Context
fixes #2650
fixes #2672
Checklist
fixes #number