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

task3. #30

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

task3. #30

wants to merge 14 commits into from

Conversation

volartm
Copy link

@volartm volartm commented Mar 9, 2020

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.

Хорошая работа, спасибо!

@@ -0,0 +1,34 @@
FROM ruby:2.6.3-alpine
Copy link
Collaborator

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

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)

Copy link
Author

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

В задании было написано первичным ключом для автобуса считаем (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
Copy link
Collaborator

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

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

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 секунд
- не удалось применить подсказку из
Copy link
Collaborator

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

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:
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,128 @@
require 'active_record'
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.

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

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