-
Notifications
You must be signed in to change notification settings - Fork 10
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
[#155] New table: journal_persistence_ids #206
Conversation
scripts/migration-0.6.0/6-populate-journal-persistence-ids-table.sql
Outdated
Show resolved
Hide resolved
ec8dabf
to
f91eab6
Compare
Build is failing due to the following:
What these tests have in common is concurrent inserts on the Not entirely sure how to solve these tests, keeping what they were initially trying to test. For instance, the failing tests defined by // replace this
Future
.sequence {
senders.map { case (sender, idx) =>
Future {
writeMessages((idx * batchSize) + 1, (idx + 1) * batchSize, perId, sender.ref, writerUuid)
}
}
}.futureValue(Timeout(Span(1, Minute)))
// with this
Future {
senders.map { case (sender, idx) =>
writeMessages((idx * batchSize) + 1, (idx + 1) * batchSize, perId, sender.ref, writerUuid)
}
}.futureValue(Timeout(Span(1, Minute))) However, it kind of defeats the purpose of the test. |
The name of the test is Without the added trigger check, the constraint was weaker : it used to verify that the pair The test should be updated to account for that: concurrent writes across @mkubala What do you think? |
f91eab6
to
9534c5c
Compare
@lomigmegard and @mkubala 👋 Commit 9adf419 solves the tests issues and makes the build pass. Not sure if the tests objective still remains though 👐 |
367650e
to
4f9fc9d
Compare
4f9fc9d
to
ed38da6
Compare
e4eca16
to
a32393b
Compare
core/src/test/resources/schema/postgres/nested-partitions-schema.sql
Outdated
Show resolved
Hide resolved
0e4d39b
to
4943904
Compare
4943904
to
ea0046f
Compare
fc6d492
to
2356f24
Compare
…dd required changes to migration artifact to support journal_persistence_ids table
…estSequenceNrForPersistenceId
…new one which uses journal_persistence_ids table
With the addition of triggers that can refuse an insert on the journal, concurrent inserts on the journal for the same persistence_id can fail due to sequence number being smaller then what is already recorded. Therefore, not having gaps among ordering can only be verified across all persistence_ids and not a single one.
… on ReadJournalQueries
2356f24
to
5c8970f
Compare
This PR introduces a new metadata table to hold
journal
specific information, as in issue #155.Changelog:
journal_metadata
and trigger onjournal
inserts that auto-populate it.journal_metadata
new table name and column names are configurable like the other tables.core
andmigration
artifacts.JournalQueries#highestSequenceNrForPersistenceId
ReadJounalQueries#messageQuery
(These previous queries are still called in case the metadata table is empty for a specific persistence_id, acting as a fallback removing the need to actually populate the metadata beforehand in some costly migration.)