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

Optimization #121

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

aushev-dev
Copy link

No description provided.

Copy link
Collaborator

@spajic spajic left a 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]"`
Copy link
Collaborator

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)
Copy link
Collaborator

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|
Copy link
Collaborator

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" %>
Copy link
Collaborator

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)
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

## Гарантия корректности
Для обеспечения корректности оптимизации:

Написан интеграционный тест, проверяющий идентичность отображения данных из example.json до и после оптимизации
Copy link
Collaborator

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 секунд, что укладывается в бюджет.
Copy link
Collaborator

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)
Copy link
Collaborator

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
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

Copy link
Collaborator

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с
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍 2X!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants