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

dz3 #89

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

dz3 #89

wants to merge 8 commits into from

Conversation

stashevgenij
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.

Very nice work 👍

@@ -1 +1 @@
2.6.3
3.1.0
Copy link
Collaborator

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

Choose a reason for hiding this comment

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

?

<% end %>
</ul>

====================================================
Copy link
Collaborator

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 рейсов.

Я решил сразу написать тесты от регрессии:
Copy link
Collaborator

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

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 секунд, изменения незначительные.
Copy link
Collaborator

Choose a reason for hiding this comment

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

на загрузку страницы не оч повлияло, но очень полезно для БД

если бы это было реальное приложение и мы бы зашли с точки зрения оптимизации БД - сразу пришли бы к этому же результату


### Итог

Страница загружается за ```400-500ms```. Тесты проходят, а значит функционал не сломан, а индексы не сильно увеличили скорость создания записей в базе и мы всё ещё укладываемся в бюджет импорта данных. Последний шаг - нужно закрепить результат загрузки страницы performance тестом.
Copy link
Collaborator

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

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

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

Choose a reason for hiding this comment

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

Аккуратно и по делу, только поиск по массиву не оч оптимально

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