-
Notifications
You must be signed in to change notification settings - Fork 103
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
dz3 #89
base: master
Are you sure you want to change the base?
dz3 #89
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.
Very nice work 👍
@@ -1 +1 @@ | |||
2.6.3 | |||
3.1.0 |
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.
👍
gem 'pghero' | ||
gem 'pg_query', '>= 0.9.0' | ||
|
||
gem 'net-smtp' |
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.
?
<% end %> | ||
</ul> | ||
|
||
==================================================== |
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.
Можно использовать рендеринг коллекций, там всё не так плохо с перформансом и можно даже задать шаблон разделителя: https://guides.rubyonrails.org/layouts_and_rendering.html#spacer-templates
|
||
Для начала я запустил ```bundle install```, ```bin/setup```, сервер и проверил, что всё работает. Страница открывается, на странице расписание из 13 рейсов. | ||
|
||
Я решил сразу написать тесты от регрессии: |
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.
👍 best decision
|
||
Сделал профилирование с помощью ```ruby-prof```, по отчёту больше всего времени занимают методы ```#find_or_create_by```, потом транзакции и т.д. Чтобы не создавать линшних запросов и транзакций, можно попробовать сначала записать все записи в память, а потом всё положить в базу с помощью ```#insert_all```. | ||
|
||
Вынесу логику в ```lib/tasks/support``` в класс ```TripsReloader```. |
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 | ||
|
||
Следующая точка роста - запрос ```trips``` по ```from_id``` и ```to_id```. Попробую сделать ```EXPLAIN``` через ```PgHero```. Вижу, что запрос идёт ```Seq Scan```'ом по всей таблице, значит нужно добавить индекс. ```PgHero``` советует добавить индекс по ```from_id, to_id``` для ```trips```, я согласен. Страница стала грузиться за 12-14 секунд, изменения незначительные. |
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.
на загрузку страницы не оч повлияло, но очень полезно для БД
если бы это было реальное приложение и мы бы зашли с точки зрения оптимизации БД - сразу пришли бы к этому же результату
|
||
### Итог | ||
|
||
Страница загружается за ```400-500ms```. Тесты проходят, а значит функционал не сломан, а индексы не сильно увеличили скорость создания записей в базе и мы всё ещё укладываемся в бюджет импорта данных. Последний шаг - нужно закрепить результат загрузки страницы performance тестом. |
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.
👍
@@ -0,0 +1,5 @@ | |||
class AddIndexOnTripsFromIdToId < ActiveRecord::Migration[6.1] | |||
def change | |||
add_index :trips, %i[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.
не забываем про concurrently
в данном случае не важно, конечно, но лучше чтобы вошло в привычку
и советую использовать strong_migrations, чтобы не ошибиться в миграциях
end | ||
|
||
def find_or_add_object(array, value, key = :name) | ||
array.find { |object| object[key] == value }.presence || add_object(array, value, key) |
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.
поиск по массиву - долго, O(N)
лучше организовать в хэш, там доступ по ключу O(1)
|
||
bus | ||
end | ||
end |
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.
Аккуратно и по делу, только поиск по массиву не оч оптимально
No description provided.