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

[#3] Optimization of trips import and trips view #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

[#3] Optimization of trips import and trips view #12

wants to merge 1 commit into from

Conversation

n-n1ks
Copy link

@n-n1ks n-n1ks commented Feb 16, 2020

No description provided.

@n-n1ks n-n1ks requested a review from spajic February 16, 2020 15:39
@n-n1ks n-n1ks changed the title Optimization import and data view (squash commit) Optimization of import and data view Feb 16, 2020
@n-n1ks n-n1ks changed the title Optimization of import and data view [#3] Optimization of import and trips view Feb 16, 2020
@n-n1ks n-n1ks changed the title [#3] Optimization of import and trips view [#3] Optimization of trips import and trips view Feb 16, 2020
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.

Сильная работа, спасибо!
See some comments

@@ -0,0 +1,15 @@
require:
- rubocop-performance
Copy link
Collaborator

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

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

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

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

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, тут надо внимательно бенчмаркать, получается ли в итоге с кэшированием в редисе быстрее, чем просто быстро генерить страницу. И насколько таких страниц вообще много, не закончится ли в редисе память - в общем навскидку не понятно, хорошая ли идея кэшировать страницы такого типа в редисе.

Copy link
Author

Choose a reason for hiding this comment

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

Тут согласен, можно рефачить, но момент выполнения задания не хотел добавлять новых абстракций.

Основная проблема была из-за построчной обработки данных, что было мною сделано:

1. Bulk insert все сервисов, что позволяет сразу же ссылаться на нужные для всех автобусов.
2. Стриминговая вставка всех рейсов.
Copy link
Collaborator

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 секунду.
Copy link
Collaborator

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

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