Skip to content
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

homework #135

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@ package-lock.json
.idea/

#sitemap
/public/sitemap.xml.gz
/public/sitemap.xml.gz/public/packs
/public/packs-test
/node_modules
yarn-debug.log*
.yarn-integrity
.env
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources

# Install dependencies and perform clean-up
RUN apt-get update -qq && apt-get install -y \
build-essential \
nodejs \
yarn \
&& apt-get -q clean \
&& rm -rf /var/lib/apt/lists
build-essential \
nodejs \
yarn \
&& apt-get -q clean \
&& rm -rf /var/lib/apt/lists

WORKDIR /usr/src/app
ENV RAILS_ENV development
Expand Down
6 changes: 3 additions & 3 deletions Envfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ variable :AIRBRAKE_PROJECT_ID, :integer, default: 00000

# Algolia for search (not optional)
only_in_test = proc { ENV['RACK_ENV'] == "test" ? "test-test" : nil}
variable :ALGOLIASEARCH_API_KEY, :String, default: only_in_test
variable :ALGOLIASEARCH_APPLICATION_ID, :String, default: only_in_test
variable :ALGOLIASEARCH_SEARCH_ONLY_KEY, :String, default: only_in_test
variable :ALGOLIASEARCH_API_KEY, :String, default: ENV['ALGOLIASEARCH_API_KEY']
variable :ALGOLIASEARCH_APPLICATION_ID, :String, default: ENV['ALGOLIASEARCH_APPLICATION_ID']
variable :ALGOLIASEARCH_SEARCH_ONLY_KEY, :String, default: ENV['ALGOLIASEARCH_SEARCH_ONLY_KEY']

# AWS for images storages
variable :AWS_ID, :String, default: "Optional"
Expand Down
9 changes: 8 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ gem "acts_as_follower", github: "forem/acts_as_follower", branch: "master"
gem "addressable", "~> 2.5", ">= 2.5.2"
gem "administrate", "~> 0.11"
gem "ahoy_email", "~> 0.5"
gem "airbrake", "~> 8.1"
gem "algoliasearch-rails", "~> 1.21"
gem "algorithmia", "~> 1.0"
gem "ancestry", "~> 3.0"
Expand All @@ -37,6 +36,7 @@ gem "dalli", "~> 2.7"
gem "delayed_job_active_record", "~> 4.1"
gem "delayed_job_web", "~> 1.4"
gem "devise", "~> 4.6"
gem "dotenv-rails"
gem "draper", "~> 3.0"
gem "email_validator", "~> 1.6"
gem "emoji_regex", "~> 1.0"
Expand All @@ -59,19 +59,22 @@ gem "jquery-rails", "~> 4.3"
gem "kaminari", "~> 1.1"
gem "libhoney", "~> 1.11"
gem "liquid", "~> 4.0"
gem "newrelic_rpm"
gem "nokogiri", "~> 1.10"
gem "octokit", "~> 4.13"
gem "omniauth", "~> 1.9"
gem "omniauth-github", "~> 1.3"
gem "omniauth-twitter", "~> 1.4"
gem "pg", "~> 1.1"
gem "prometheus_exporter"
gem "pry", "~> 0.12"
gem "pry-rails", "~> 0.3"
gem "puma", "~> 3.12"
gem "pundit", "~> 2.0"
gem "pusher", "~> 1.3"
gem "pusher-push-notifications", "~> 1.0"
gem "rack-host-redirect", "~> 1.3"
gem "rack-mini-profiler", require: false
gem "rack-timeout", "~> 0.5"
gem "rails", "~> 5.1.6"
gem "rails-assets-airbrake-js-client", "~> 1.5", source: "https://rails-assets.org"
Expand Down Expand Up @@ -117,6 +120,10 @@ group :development do
gem "web-console", "~> 3.7"
end

group :development, :local_production do
gem "meta_request"
end

group :development, :test do
gem "capybara", "~> 3.13"
gem "derailed", "~> 0.1"
Expand Down
28 changes: 22 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ GEM
nokogiri
railties
safely_block (>= 0.1.1)
airbrake (8.1.4)
airbrake-ruby (~> 3.2)
airbrake-ruby (3.2.5)
rbtree3 (~> 0.5)
algoliasearch (1.26.0)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
Expand Down Expand Up @@ -137,6 +133,7 @@ GEM
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
base64 (0.2.0)
bcrypt (3.1.12)
benchmark-ips (2.7.2)
better_errors (2.5.0)
Expand Down Expand Up @@ -263,6 +260,10 @@ GEM
docile (1.3.1)
domain_name (0.5.20180417)
unf (>= 0.0.5, < 1.0.0)
dotenv (2.8.1)
dotenv-rails (2.8.1)
dotenv (= 2.8.1)
railties (>= 3.2)
draper (3.0.1)
actionpack (~> 5.0)
activemodel (~> 5.0)
Expand Down Expand Up @@ -592,6 +593,9 @@ GEM
memoizable (0.4.2)
thread_safe (~> 0.3, >= 0.3.1)
memory_profiler (0.9.12)
meta_request (0.7.4)
rack-contrib (>= 1.1, < 3)
railties (>= 3.0.0, < 7.1)
method_source (0.9.2)
mime-types (3.2.2)
mime-types-data (~> 3.2015)
Expand All @@ -612,6 +616,8 @@ GEM
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
netrc (0.11.0)
newrelic_rpm (9.6.0)
base64
nio4r (2.3.1)
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
Expand Down Expand Up @@ -651,6 +657,8 @@ GEM
ast (~> 2.4.0)
pg (1.1.4)
powerpack (0.1.2)
prometheus_exporter (2.0.8)
webrick
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
Expand All @@ -675,8 +683,12 @@ GEM
pusher-signature (0.1.8)
raabro (1.1.6)
rack (2.0.6)
rack-contrib (2.4.0)
rack (< 4)
rack-host-redirect (1.3.0)
rack
rack-mini-profiler (3.1.1)
rack (>= 1.2.0)
rack-protection (2.0.4)
rack
rack-proxy (0.6.5)
Expand Down Expand Up @@ -719,7 +731,6 @@ GEM
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rbtree3 (0.5.0)
rbvmomi (1.11.6)
builder (~> 3.0)
json (>= 1.8)
Expand Down Expand Up @@ -932,6 +943,7 @@ GEM
webpush (0.3.2)
hkdf (~> 0.2)
jwt
webrick (1.8.1)
websocket-driver (0.6.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3)
Expand All @@ -952,7 +964,6 @@ DEPENDENCIES
addressable (~> 2.5, >= 2.5.2)
administrate (~> 0.11)
ahoy_email (~> 0.5)
airbrake (~> 8.1)
algoliasearch-rails (~> 1.21)
algorithmia (~> 1.0)
ancestry (~> 3.0)
Expand Down Expand Up @@ -980,6 +991,7 @@ DEPENDENCIES
derailed (~> 0.1)
derailed_benchmarks (~> 1.3)
devise (~> 4.6)
dotenv-rails
draper (~> 3.0)
email_validator (~> 1.6)
emoji_regex (~> 1.0)
Expand Down Expand Up @@ -1012,14 +1024,17 @@ DEPENDENCIES
libhoney (~> 1.11)
liquid (~> 4.0)
memory_profiler (~> 0.9)
meta_request
nakayoshi_fork
newrelic_rpm
nokogiri (~> 1.10)
octokit (~> 4.13)
omniauth (~> 1.9)
omniauth-github (~> 1.3)
omniauth-twitter (~> 1.4)
parallel_tests (~> 2.27)
pg (~> 1.1)
prometheus_exporter
pry (~> 0.12)
pry-byebug (~> 3.7)
pry-rails (~> 0.3)
Expand All @@ -1029,6 +1044,7 @@ DEPENDENCIES
pusher (~> 1.3)
pusher-push-notifications (~> 1.0)
rack-host-redirect (~> 1.3)
rack-mini-profiler
rack-timeout (~> 0.5)
rails (~> 5.1.6)
rails-assets-airbrake-js-client (~> 1.5)!
Expand Down
3 changes: 3 additions & 0 deletions Procfile.local_production
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
web: bin/rails s -p 3000
job: bin/rake jobs:work
prometheus_exporter: bundle exec prometheus_exporter
10 changes: 10 additions & 0 deletions app/javascript/packs/application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* eslint no-console:0 */
// This file is automatically compiled by Webpack, along with any other files
// present in this directory. You're encouraged to place your actual application logic in
// a relevant structure within app/javascript and only use these pack files to reference
// that code so it'll be compiled.
//
// To reference this file, add <%= javascript_pack_tag 'application' %> to the appropriate
// layout file, like app/views/layouts/application.html.erb

console.log('Hello World from Webpacker')
4 changes: 3 additions & 1 deletion app/views/stories/_main_stories_feed.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
<% if !user_signed_in? && i == 4 %>
<%= render "stories/sign_in_invitation" %>
<% end %>
<%= render "articles/single_story", story: story %>
<% cache story do %>
<%= render "articles/single_story", story: story %>
<% end %>
<% end %>
<% end %>
<% if @stories.size > 1 %>
Expand Down
17 changes: 17 additions & 0 deletions bin/startup_local_production
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env ruby
require "pathname"
require "fileutils"
include FileUtils

# path to your application root.
APP_ROOT = Pathname.new File.expand_path("..", __dir__)

def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end

chdir APP_ROOT do
puts "== STARTING UP =="
system! "bundle exec rake assets:precompile" if ENV['PRECOMPILE_NEEDED']
system! "foreman start -f Procfile.local_production"
end
55 changes: 55 additions & 0 deletions case-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
Бенчмарк до кэша

```
Requests per second: 12.53 [#/sec] (mean)
Time per request: 79.815 [ms] (mean)
Time per request: 79.815 [ms] (mean, across all concurrent requests)
Transfer rate: 1766.58 [Kbytes/sec] received

Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.0 0 0
Processing: 59 80 20.6 71 118
Waiting: 59 80 20.6 71 118
Total: 59 80 20.6 71 118

Percentage of the requests served within a certain time (ms)
50% 71
66% 89
75% 100
80% 101
90% 118
95% 118
98% 118
99% 118
100% 118 (longest request)
```

Бенчмарк после кэширования фрагмента story в app/views/stories/_main_stories_feed.html.erb

```
Requests per second: 21.13 [#/sec] (mean)
Time per request: 47.333 [ms] (mean)
Time per request: 47.333 [ms] (mean, across all concurrent requests)
Transfer rate: 2979.84 [Kbytes/sec] received

Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.0 0 0
Processing: 38 47 13.6 44 85
Waiting: 38 47 13.6 44 85
Total: 38 47 13.6 44 85

Percentage of the requests served within a certain time (ms)
50% 44
66% 46
75% 46
80% 48
90% 85
95% 85
98% 85
99% 85
100% 85 (longest request)
```

По медиане оптимизация принесла 60% ускорения загрузки
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

2 changes: 2 additions & 0 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,7 @@ class Application < Rails::Application
end
ReservedWords.all = [ReservedWords::BASE_WORDS + top_routes].flatten.compact.uniq
end

config.skylight.environments << "local_production"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

end
end
45 changes: 45 additions & 0 deletions config/environments/local_production.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
Rails.application.configure do
config.webpacker.check_yarn_integrity = false
config.cache_classes = true
config.eager_load = true
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
config.cache_store = :memory_store
config.public_file_server.enabled = true
config.public_file_server.headers = {
"Cache-Control" => "public, s-maxage=2592000, max-age=86400"
}
config.assets.js_compressor = Uglifier.new(harmony: true)
config.action_mailer.raise_delivery_errors = false
config.active_support.deprecation = :log
config.active_record.migration_error = :page_load
config.assets.debug = false
config.assets.compile = true
config.assets.digest = true
config.assets.quiet = true
config.assets.raise_runtime_errors = true
config.log_formatter = ::Logger::Formatter.new
if ENV["RAILS_LOG_TO_STDOUT"].present?
logger = ActiveSupport::Logger.new(STDOUT)
logger.formatter = config.log_formatter
config.logger = ActiveSupport::TaggedLogging.new(logger)
end
config.action_mailer.perform_caching = false
config.app_domain = "localhost:3000"
config.action_mailer.default_url_options = { host: "localhost:3000" }
config.action_mailer.delivery_method = :smtp
config.action_mailer.perform_deliveries = true
config.action_mailer.default_url_options = { host: config.app_domain }
config.action_mailer.smtp_settings = {
address: "smtp.gmail.com",
port: "587",
enable_starttls_auto: true,
user_name: '<%= ENV["DEVELOPMENT_EMAIL_USERNAME"] %>',
password: '<%= ENV["DEVELOPMENT_EMAIL_PASSWORD"] %>',
authentication: :plain,
domain: "localhost:3000"
}
config.action_mailer.preview_path = "#{Rails.root}/spec/mailers/previews"
config.log_level = :debug
config.log_tags = [:request_id]
end
3 changes: 3 additions & 0 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Rails.application.configure do
# Verifies that versions and hashed value of the package contents in the project's package.json
config.webpacker.check_yarn_integrity = false

# Verifies that versions and hashed value of the package contents in the project's package.json
config.webpacker.check_yarn_integrity = false

# Settings specified here will take precedence over those in config/application.rb.
Expand Down
Loading