mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
32393f72b1
When the server gets overloaded and lots of requests start queuing server will attempt to shed load by returning 429 errors on background requests. The client can flag a request as background by setting the header: `Discourse-Background` to `true` Out-of-the-box we shed load when the queue time goes above 0.5 seconds. The only request we shed at the moment is the request to load up a new post when someone posts to a topic. We can extend this as we go with a more general pattern on the client. Previous to this change, rate limiting would "break" the post stream which would make suggested topics vanish and users would have to scroll the page to see more posts in the topic. Server needs this protection for cases where tons of clients are navigated to a topic and a new post is made. This can lead to a self inflicted denial of service if enough clients are viewing the topic. Due to the internal security design of Discourse it is hard for a large number of clients to share a channel where we would pass the full post body via the message bus. It also renames (and deprecates) triggerNewPostInStream to triggerNewPostsInStream This allows us to load a batch of new posts cleanly, so the controller can keep track of a backlog Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
27 lines
754 B
Plaintext
27 lines
754 B
Plaintext
app/assets/stylesheets/vendor/
|
|
plugins/**/assets/stylesheets/vendor/
|
|
plugins/**/assets/javascripts/vendor/
|
|
package.json
|
|
config/locales/**/*.yml
|
|
!config/locales/**/*.en*.yml
|
|
script/import_scripts/**/*.yml
|
|
|
|
app/assets/javascripts/env.js
|
|
app/assets/javascripts/main_include_admin.js
|
|
app/assets/javascripts/vendor.js
|
|
app/assets/javascripts/locales/i18n.js
|
|
app/assets/javascripts/ember-addons/
|
|
app/assets/javascripts/discourse/lib/autosize.js
|
|
lib/javascripts/locale/
|
|
lib/javascripts/messageformat.js
|
|
lib/highlight_js/
|
|
plugins/**/lib/javascripts/locale
|
|
public/
|
|
vendor/
|
|
app/assets/javascripts/discourse/tests/test_helper.js
|
|
app/assets/javascripts/discourse/tests/fixtures
|
|
app/assets/javascripts/discourse/tests/helpers/assertions.js
|
|
node_modules/
|
|
dist/
|
|
**/*.rb
|