-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from pact-foundation/feat/optimise-index-with…
…-tags feat: optimise index with tags
- Loading branch information
Showing
15 changed files
with
483 additions
and
122 deletions.
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
50 changes: 50 additions & 0 deletions
50
db/migrations/20180523_create_latest_verifications_for_consumer_version_tags.rb
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,50 @@ | ||
Sequel.migration do | ||
up do | ||
# The latest verification id for each consumer version tag | ||
create_view(:latest_verification_ids_for_consumer_version_tags, | ||
"select | ||
pv.pacticipant_id as provider_id, | ||
lpp.consumer_id, | ||
t.name as consumer_version_tag_name, | ||
max(v.id) as latest_verification_id | ||
from verifications v | ||
join latest_pact_publications_by_consumer_versions lpp | ||
on v.pact_version_id = lpp.pact_version_id | ||
join tags t | ||
on lpp.consumer_version_id = t.version_id | ||
join versions pv | ||
on v.provider_version_id = pv.id | ||
group by pv.pacticipant_id, lpp.consumer_id, t.name") | ||
|
||
# The most recent verification for each consumer/consumer version tag/provider | ||
latest_verifications = from(:verifications) | ||
.select( | ||
Sequel[:lv][:consumer_id], | ||
Sequel[:lv][:provider_id], | ||
Sequel[:lv][:consumer_version_tag_name], | ||
Sequel[:pv][:sha].as(:pact_version_sha), | ||
Sequel[:prv][:number].as(:provider_version_number), | ||
Sequel[:prv][:order].as(:provider_version_order), | ||
) | ||
.select_append{ verifications.* } | ||
.join(:latest_verification_ids_for_consumer_version_tags, | ||
{ | ||
Sequel[:verifications][:id] => Sequel[:lv][:latest_verification_id], | ||
}, { table_alias: :lv }) | ||
.join(:versions, | ||
{ | ||
Sequel[:verifications][:provider_version_id] => Sequel[:prv][:id] | ||
}, { table_alias: :prv }) | ||
.join(:pact_versions, | ||
{ | ||
Sequel[:verifications][:pact_version_id] => Sequel[:pv][:id] | ||
}, { table_alias: :pv }) | ||
|
||
create_or_replace_view(:latest_verifications_for_consumer_version_tags, latest_verifications) | ||
end | ||
|
||
down do | ||
drop_view(:latest_verifications_for_consumer_version_tags) | ||
drop_view(:latest_verification_ids_for_consumer_version_tags) | ||
end | ||
end |
46 changes: 46 additions & 0 deletions
46
db/migrations/20180524_create_latest_verifications_for_consumer_and_provider.rb
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,46 @@ | ||
Sequel.migration do | ||
up do | ||
# The latest verification id for each consumer version tag | ||
create_view(:latest_verification_ids_for_consumer_and_provider, | ||
"select | ||
pv.pacticipant_id as provider_id, | ||
lpp.consumer_id, | ||
max(v.id) as latest_verification_id | ||
from verifications v | ||
join latest_pact_publications_by_consumer_versions lpp | ||
on v.pact_version_id = lpp.pact_version_id | ||
join versions pv | ||
on v.provider_version_id = pv.id | ||
group by pv.pacticipant_id, lpp.consumer_id") | ||
|
||
# The most recent verification for each consumer/consumer version tag/provider | ||
latest_verifications = from(:verifications) | ||
.select( | ||
Sequel[:lv][:consumer_id], | ||
Sequel[:lv][:provider_id], | ||
Sequel[:pv][:sha].as(:pact_version_sha), | ||
Sequel[:prv][:number].as(:provider_version_number), | ||
Sequel[:prv][:order].as(:provider_version_order), | ||
) | ||
.select_append{ verifications.* } | ||
.join(:latest_verification_ids_for_consumer_and_provider, | ||
{ | ||
Sequel[:verifications][:id] => Sequel[:lv][:latest_verification_id], | ||
}, { table_alias: :lv }) | ||
.join(:versions, | ||
{ | ||
Sequel[:verifications][:provider_version_id] => Sequel[:prv][:id] | ||
}, { table_alias: :prv }) | ||
.join(:pact_versions, | ||
{ | ||
Sequel[:verifications][:pact_version_id] => Sequel[:pv][:id] | ||
}, { table_alias: :pv }) | ||
|
||
create_or_replace_view(:latest_verifications_for_consumer_and_provider, latest_verifications) | ||
end | ||
|
||
down do | ||
drop_view(:latest_verifications_for_consumer_and_provider) | ||
drop_view(:latest_verification_ids_for_consumer_and_provider) | ||
end | ||
end |
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
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,71 @@ | ||
require 'pact_broker/verifications/repository' | ||
|
||
# A collection of matrix rows with the same pact publication id | ||
# It's basically a normalised view of a denormalised view :( | ||
# A pact publication may be the overall latest, and/or the latest for a tag | ||
module PactBroker | ||
module Matrix | ||
class AggregatedRow | ||
extend Forwardable | ||
|
||
delegate [:consumer, :consumer_name, :consumer_version, :consumer_version_number, :consumer_version_order, :consumer_version_tags] => :first_row | ||
delegate [:provider, :provider_name, :provider_version, :provider_version_number, :provider_version_order, :provider_version_tags] => :first_row | ||
delegate [:pact, :pact_version, :pact_revision_number, :webhooks, :latest_triggered_webhooks, :'<=>'] => :first_row | ||
delegate [:verification_id, :verification] => :first_row | ||
|
||
def initialize matrix_rows | ||
@matrix_rows = matrix_rows | ||
@first_row = matrix_rows.first | ||
end | ||
|
||
def overall_latest? | ||
!!matrix_rows.find{ | row| row.consumer_version_tag_name.nil? } | ||
end | ||
|
||
# If this comes back nil, it won't be "cached", but it's a reasonably | ||
# quick query, so it's probably ok. | ||
def latest_verification | ||
@latest_verification ||= begin | ||
verification = matrix_rows.collect do | row| | ||
row.verification || latest_verification_for_consumer_version_tag(row) | ||
end.compact.sort{ |v1, v2| v1.id <=> v2.id }.last | ||
|
||
if !verification && overall_latest? | ||
overall_latest_verification | ||
else | ||
verification | ||
end | ||
end | ||
end | ||
|
||
# The list of tag names for which this pact publication is the most recent with that tag | ||
# There could, however, be a later consumer version that does't have a pact (perhaps because it was deleted) | ||
# that has the same tag. | ||
# TODO show a warning when the data is "corrupted" as above. | ||
def consumer_head_tag_names | ||
matrix_rows.collect(&:consumer_version_tag_name).compact | ||
end | ||
|
||
private | ||
|
||
attr_reader :matrix_rows | ||
|
||
def latest_verification_for_consumer_version_tag row | ||
row.latest_verification_for_consumer_version_tag if row.consumer_version_tag_name | ||
end | ||
|
||
def overall_latest_verification | ||
# not eager loaded because it shouldn't be called that often | ||
first_row.latest_verification_for_consumer_and_provider | ||
end | ||
|
||
def first_row | ||
@first_row | ||
end | ||
|
||
def consumer_version_tag_names | ||
matrix_rows.collect(&:consumer_version_tag_name) | ||
end | ||
end | ||
end | ||
end |
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
Oops, something went wrong.