-
Notifications
You must be signed in to change notification settings - Fork 637
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
Enable FastBoot #1715
Enable FastBoot #1715
Conversation
Hmm, actually |
☔ The latest upstream changes (presumably #1725) made this pull request unmergeable. Please resolve the merge conflicts. |
Will we need an additional process in front of the backend to intercept and build responses for non-API requests? I've deployed this to a staging area, but I don't see it working in curl either: |
Yep. Seems like so. How about merging this change first, and have a different PR to change our Heroku configuration? There are multiple PRs that touch package.json. I'd like to avoid rebasing this branch again and again while we are figuring out Heroku deployment configuration. |
☔ The latest upstream changes (presumably #1733) made this pull request unmergeable. Please resolve the merge conflicts. |
We can't merge a branch that is undeployable. |
Let me double-check. My understanding is that we need an additional server to make server-side rendering work, but the front-end server itself is working as like before. |
I'm not sure if we will need to add For me, |
Hey. I'm back! Let me remove jQuery first before enabling FastBoot. |
I have revamped the PR. Here is my Heoku environment. https://fathomless-island-39956.herokuapp.com @jtgeibel - I have added Fastboot Server since it is recommended by https://ember-fastboot.com/docs/deploying. Currently Nginx is still receiving requests from Heroku's router and forwarding certain requests (just "/" at this time) to the Fastboot Server. |
Great @kzys, this is looking a lot better! I tweaked your nginx conf a bit to try things out on more pages. (You can try it in my staging area, at: https://jtgeibel-staging-crates-io.herokuapp.com/) Here are some of the things I noticed:
Overall, it seems like the main fastboot functionality is working, with just a few rough edges to resolve! |
I also just noticed, that for |
I have fixed the styling issue. Due to the impact, I'd like to enable FastBoot on a few pages (maybe /install and /policies?) first to see to make sure things are working correctly. What do you think? |
@kzys Sorry for the delay in getting back to you here.
It looks like that CSS in that patch is also being applied to the download graph, causing the width to overflow. I've sent you an invite on Percy so that you should have access to any visual diffs identified there.
I think this sounds like a great approach to minimize any potential ops impacts. I've been doing some experiments with your branch on Heroku, and I've organized the points below based on this sort of incremental rollout. Potential blockers to rolling out rendering of static pages
Potential blockers for rendering of dynamic pages
|
Thanks. Let me address the blockers for static pages.
|
The graph issue is a bit strange, because the graph div should be always under body>div. Do the acceptance tests have a different HTML structure? |
Okay. This is because of #ember-testing container that has ember-application class... |
Since package.json and package-lock.json tend to cause a lot of conflicts, it would be great if we can focus on a small set of low-traffic static pages first, merge this branch and fix other pages in different, hopefully smaller pull requests. |
☔ The latest upstream changes (presumably #1787) made this pull request unmergeable. Please resolve the merge conflicts. |
I definitely agree with this path forward. I'm deploying to staging now to test out the latest changes, but they look good to me. From my perspective, this PR will be good to merge with:
@sgrif do you have any concerns with deploying this to begin testing fastboot in production for a few static pages? I think this is a good way forward to try things out with the minimal potential for impacting production, but I'd like to make sure you are comfortable from an ops/deployment perspective before merging to master. |
As like ember-page-title, we cannot use document.title. https://github.com/adopted-ember-addons/ember-page-title/blob/4732cdb2c9f673e4714334b33c5b4c5056dfcb8f/tests/acceptance/posts-test.js#L11
This class is added dynamically, after FastBoot rendering.
On Acceptance Tests, the application is rendered under #ember-testing, not the root <body> element.
ddfeed7 changes the FastBoot-enabled pages from / to only /policies. It might be really conservative, but I'd like to start small. The other 2 commits are for getting rid of timestamps, since Heroku adds them anyway. |
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.
CI had failed on a dpkg install, so I restarted it. Now its showing 3 lints in fastboot.js
causing the build to fail. Other than that and a new review comment, this is looking great to me!
app/index.html
Outdated
<noscript> | ||
<div id="main"> | ||
<div class='noscript'> | ||
This site requires JavaScript to be enabled. |
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.
Doing a final pass on these changes, I'm not sure if we should remove this notice at this time. We'll want to make sure users hitting URLs other than /policy
see this. Is there a way to only remove this when rendering in fastboot?
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! Let me restore the warning for now. index.html cannot use Handlerbars apparently. So checking FastBoot from here seems tricky.
As long as it's some relatively low traffic pages I think that's fine |
I can squash commits to either one or a few if you want to. Please let me know! |
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.
Approving, but not merging at the moment as we'll probably want to deploy to production as an individual change.
@bors r=jtgeibel |
📌 Commit 56f23f1 has been approved by |
Enable FastBoot Actually, without completely removing jQuery, FastBoot seems working.
☀️ Test successful - checks-travis |
Revert "Auto merge of #1715 - kzys:enable-fastboot, r=jtgeibel" This reverts commit 111b7eb, reversing changes made to 27bd9a8. This caused our memory usage to increase from 50MB to 350MB at boot, and I was able to trivially cause the server to run out of memory by hitting /policies repeatedly. This introduces a DOS vector that we can't afford.
This caused memory issues, I've reverted in #1827 |
Actually, without completely removing jQuery, FastBoot seems working.