-
Notifications
You must be signed in to change notification settings - Fork 50
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
ДЗ №7 #20
Open
dmi3-bu
wants to merge
1
commit into
hardcode-dev:master
Choose a base branch
from
dmi3-bu:solution
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
ДЗ №7 #20
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
## Проблема | ||
|
||
Проблема: в рабочем проекте медленно проходят тесты: | ||
``` | ||
Finished in 5 minutes 25 seconds (files took 20.36 seconds to load) | ||
832 examples, 0 failures, 8 pending | ||
``` | ||
|
||
## Sidekiq | ||
Прогнал профилировщик: | ||
``` | ||
[TEST PROF INFO] EventProf results for sidekiq.inline | ||
|
||
Total time: 00:15.767 of 05:27.530 (4.59%) | ||
Total events: 1742 | ||
``` | ||
Заменил на fake!, зафейлилось много тестов. Решил не стабить sidekiq и вернуть все обратно, ибо это не является самой большой точкой роста. | ||
|
||
|
||
## DatabaseCleaner | ||
Заметил, что в rails_helper.rb используется DatabaseCleaner: | ||
``` | ||
config.before(:suite) do | ||
DatabaseCleaner.strategy = :truncation, { except: %w(spatial_ref_sys) } | ||
DatabaseCleaner.clean | ||
end | ||
|
||
config.around(:each) do |example| | ||
DatabaseCleaner.cleaning do | ||
example.run | ||
end | ||
end | ||
``` | ||
Закомментировал, получил около 10 фейлящих тестов. Тогда решил вынести флаг для example'ов и вызывать очищение базы явно, где надо: | ||
|
||
``` | ||
config.before(:each) do |example| | ||
if example.metadata[:database_cleaner] | ||
DatabaseCleaner.strategy = :truncation, { except: %w(spatial_ref_sys) } | ||
DatabaseCleaner.clean | ||
end | ||
end | ||
``` | ||
В итоге получил почти двухкратный прирост: | ||
|
||
` | ||
Finished in 2 minutes 45.5 seconds (files took 26.86 seconds to load) | ||
` | ||
|
||
## let_it_be, before_all | ||
Запустил RspecDissect для построения отчета, который показал, что во многих suite многократно пересоздаются записи | ||
(в основном это модель User). Тогда я заменил let на let_it_be в топ 5 спеках. Не везде тесты заработали с первого раза, | ||
во многих сущностях пришлось указать let_it_be для связанных полей, еще в нескольких - указать параметр `reload:true` | ||
для перезагрузки записи после мутации из предыдущего теста. В результате: | ||
|
||
` | ||
Finished in 2 minutes 28.9 seconds (files took 20.99 seconds to load) | ||
` | ||
|
||
Повторный прогон RspecDissect показал, что оставшиеся спеки на время выполнения почти не влияют. | ||
|
||
## Оптимизация фабрик | ||
Отчет FactoryProf показал печальную картину: | ||
``` | ||
[TEST PROF INFO] Factories usage | ||
|
||
Total: 12418 | ||
Total top-level: 2659 | ||
Total time: 01:39.090 (out of 02:32.893) | ||
Total uniq factories: 21 | ||
|
||
total top-level total time time per call top-level time name | ||
|
||
3109 83 20.2705s 0.0065s 0.6245s interest | ||
3078 0 13.4150s 0.0044s 0.0000s token | ||
1539 1487 128.8310s 0.0837s 124.9127s user | ||
1536 272 13.5771s 0.0088s 2.1966s location | ||
1458 17 7.6440s 0.0052s 0.0899s search_params | ||
|
||
... | ||
``` | ||
|
||
Оказалось, что топ 5 фабрик, которые редко вызываются top-level, связаны с фабрикой User. Тогда я вынес эти связи в trait'ы, | ||
и подключил их только в те примеры, где нужно (связь с Interest оказалась вообще не нужна). | ||
В итоге: | ||
|
||
` | ||
Finished in 1 minute 50.2 seconds (files took 20.93 seconds to load) | ||
832 examples, 0 failures, 8 pending | ||
` | ||
|
||
## FactoryDoctor | ||
Прогнал отчет FactoryDoctor: | ||
``` | ||
[TEST PROF INFO] FactoryDoctor report | ||
Total (potentially) bad examples: 72 | ||
Total wasted time: 00:05.538 | ||
``` | ||
Попробовал заменить в предложенных отчетом тестах create на build, в результате многие тесты стали фейлиться. | ||
В конечном счете решил пока оставить как есть, ибо потенциальный выигрыш здесь все равно небольшой. | ||
|
||
## Результат | ||
|
||
В ходе оптимизации получилось сократить время прохождения тестов с 5 минут 25 секунд до 1 минуты 50 секунд. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Very very nice! Немного потюнили и в 3 раза ускорили. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Парам-парам пам!