-
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
[#3] Optimization of trips import and trips view #12
base: master
Are you sure you want to change the base?
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.
Сильная работа, спасибо!
See some comments
@@ -0,0 +1,15 @@ | |||
require: | |||
- rubocop-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.
👍 плюсик за rubocop-performance!
gem "puma", "~> 3.11" | ||
gem "bootsnap", ">= 1.1.0", require: false | ||
gem "activerecord-import" | ||
gem "json-streamer" |
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 "bootsnap", ">= 1.1.0", require: false | ||
gem "activerecord-import" | ||
gem "json-streamer" | ||
gem "dry-container" |
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.
ого
class TripsContainer | ||
extend Dry::Container::Mixin | ||
|
||
register("import") do |
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.
wow, такого в этом ДЗ ещё никто не делал
|
||
private | ||
|
||
def index_cache |
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.
Лучше бы вынести логику кэширования в QueryObject, не засорять ей контроллер.
Also, возможно, удобно было бы применить https://github.com/rails/actionpack-page_caching
Also, тут надо внимательно бенчмаркать, получается ли в итоге с кэшированием в редисе быстрее, чем просто быстро генерить страницу. И насколько таких страниц вообще много, не закончится ли в редисе память - в общем навскидку не понятно, хорошая ли идея кэшировать страницы такого типа в редисе.
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.
Тут согласен, можно рефачить, но момент выполнения задания не хотел добавлять новых абстракций.
Основная проблема была из-за построчной обработки данных, что было мною сделано: | ||
|
||
1. Bulk insert все сервисов, что позволяет сразу же ссылаться на нужные для всех автобусов. | ||
2. Стриминговая вставка всех рейсов. |
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.
👍
|
||
## Результаты | ||
### Импорт | ||
Удалось ускорить время выполнения в ~36 раз (с 25 секунд до 0.7), был написано тест, проверяющий корректность выполнения и проверяющий, что программа работает быстрее, чем 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.
Круто! Попробуйте бонусные объёмы данных, если будет время.
По идее должно сработать, если json-streamer
не упадёт.
Я сталкивался с тем, что какие-то из подобных библиотек умирали на большом объёме данных.
В ходе профилирования мною было выявлено 2 основных проблемы: | ||
|
||
1. N + 1. | ||
2. Затраты на partial render. |
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.
Кину explain, проверю.
context "when small.json file" do | ||
let(:file_path) { File.join(Rails.root, "fixtures", "small.json") } | ||
|
||
it "should work less then 1 second" do |
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.