-
Notifications
You must be signed in to change notification settings - Fork 115
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
Optimization #121
base: master
Are you sure you want to change the base?
Optimization #121
Conversation
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.
✅ nice work, thanks!
@@ -30,7 +30,7 @@ | |||
|
|||
Нужно оптимизировать механизм перезагрузки расписания из файла так, чтобы он импортировал файл `large.json` **в пределах минуты**. | |||
|
|||
`rake reload_json[fixtures/large.json]` | |||
`rake "reload_json[fixtures/large.json]"` |
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.
👍
@@ -2,6 +2,6 @@ class TripsController < ApplicationController | |||
def index | |||
@from = City.find_by_name!(params[:from]) | |||
@to = City.find_by_name!(params[:to]) | |||
@trips = Trip.where(from: @from, to: @to).order(:start_time) | |||
@trips = Trip.preload(:from, :to, bus: :services).where(from: @from, to: @to) |
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.
а мы тут сортировку не потеряли?
cities: Set.new, | ||
buses: [], | ||
services: Set.new | ||
}.tap do |data| |
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.
кстати вот в контексте профилирования и оптимизации не очень удобно работать с tap
в отчётах профилировщиков это может выглядеть как - вся работа была в блоке tap (а что тормозило внутри этого блока, и какой именно это был tap в случае если их несколько - непонятно)
<%= render "delimiter" %> | ||
<% end %> | ||
<div class="trips-container"> | ||
<%= render partial: "trip", collection: @trips, spacer_template: "delimiter" %> |
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.
👍
Количество SQL запросов | ||
Время выполнения SQL запросов | ||
|
||
Для контроля корректности работы скрипта после внесения изменений, я сначала создал тест (spec/services/reloader_spec.rb) |
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.
👍
## Гарантия корректности | ||
Для обеспечения корректности оптимизации: | ||
|
||
Написан интеграционный тест, проверяющий идентичность отображения данных из example.json до и после оптимизации |
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.
👍
|
||
## Итого: | ||
Время выполнения для small.json уменьшилось с 27 секунд до 0.3 секунд. | ||
Время выполнения для large.json составила 12 секунд, что укладывается в бюджет. |
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.
👍
Trip Count (21.2ms) SELECT COUNT(*) FROM "trips" WHERE "trips"."from_id" = $1 AND "trips"."to_id" = $2 [["from_id", 252], ["to_id", 254]] | ||
``` | ||
- Логи rails и rack-mini-profiler | ||
- Проверил как выполняется запрос в pg_hero, используется Seq Scan, Pg_hero предложил добавить индекс CREATE INDEX CONCURRENTLY ON trips (from_id, to_id) |
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.
👍 на мой взгляд это просто супер-удобно, что он прям предлагает сам конкретно что надо делать, да ещё такие не особо тривиальные вещи как составной индекс
``` | ||
- Логи rails и rack-mini-profiler | ||
- Проверил как выполняется запрос в pg_hero, используется Seq Scan, Pg_hero предложил добавить индекс CREATE INDEX CONCURRENTLY ON trips (from_id, to_id) | ||
- Скорость выполнения запроса сократилась с 21ms до 1.5ms |
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.
👍
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.
Also, там count-запрос не нужен если мы уж всё равно грузим все объекты для показа на странице (так как тут нет никакой пагинации)
- В логах rack-mini-profiler видно множественный рендеринг одного и того же partial _services.html.erb | ||
- Текущая реализация в index.html.erb использует цикл с отдельным рендерингом для каждой поездки | ||
- Заменили на использование collection rendering | ||
- Время рендеринга страницы сократилось с 2с до 1с |
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.
👍 2X!
No description provided.