-
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
task3. #30
base: master
Are you sure you want to change the base?
task3. #30
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.
Хорошая работа, спасибо!
@@ -0,0 +1,34 @@ | |||
FROM ruby:2.6.3-alpine |
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,6 +2,6 @@ class TripsController < ApplicationController | |||
def index | |||
@from = City.find_by_name!(params[:from]) | |||
@to = City.find_by_name!(params[:to]) | |||
@trips = Trip.where(from: @from, to: @to).order(:start_time) | |||
@trips = Trip.where(from: @from, to: @to).order(:start_time).includes(:bus).includes(bus: :services) |
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.
@trips = Trip.includes(bus: :services).where(from: @from, to: @to).order(:start_time)
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.
Спасибо. такой вариант я тоже пробовал. Не помогло.
has_and_belongs_to_many :services, join_table: :buses_services | ||
self.primary_keys = :number, :model | ||
|
||
has_many :trips, :foreign_key => [:number, :model] |
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.
В задании было написано первичным ключом для автобуса считаем (model, number)
, плюс в процессе реализации понял плюсы такого подхода - в процессе импорта данных отпадает необходимость в высчитыании id-шников и нет необходимости обеспечения их уникальности(id).
STrip = Struct.new(:from, :to, :start_time, :duration_minutes, :price_cents, :number, :model) | ||
SBus = Struct.new(:number, :model, :services) | ||
|
||
class ScheduleLoader |
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.
Плюс за вынос в сервис 👍
@@services = {} | ||
Service.pluck(:name, :id).map{|sr| @@services[sr[0].to_sym] = sr[1]} | ||
|
||
# https://koshigoe.github.io/postgresql/ruby/2018/10/31/bulk-insert-vs-copy-in-postgres.html |
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.
👍
- [X] `bullet` | ||
- [X] `explain` запросов | ||
|
||
реализовал composite primary key (model, number) через гем 'composite_primary_keys'. Нашел интересную статью с бенчмарками различных методик загрузки данных в Postgreql - |
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://koshigoe.github.io/postgresql/ruby/2018/10/31/bulk-insert-vs-copy-in-postgres.html`. Прогнал локально тесты из статьи и реализовал самый быстрый, что дало прирост, но меньший чем ожидал. Посчитал что текущей скорости достаточно и перешел к оптимизации отображения расписания. | ||
- импорт данных из файла rake reload_json[fixtures/large.json] проходит за 40 секунд. | ||
- загрузка страницы с расписанием занимат 6-11 секунд | ||
- не удалось применить подсказку из |
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.
Написал рабочий вариант в комменте
disable_ddl_transaction! | ||
|
||
def up | ||
add_index :buses_services, %i[model number service_id], algorithm: :concurrently |
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
- db-postgresql | ||
|
||
# schedule app | ||
schedule_app: |
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,128 @@ | |||
require 'active_record' |
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.
Спасибо) Пришел к выводу в процессе курса и практическим путем, что приведенные в статьях бенчмарки нужно всегда проверять, так как результаты сильно зависят от версий и окружения.
No description provided.