You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All SQL tables are missing crucial indexes that potentially makes query slower
We need to add these indexes available on all flavor of SQL tables (example is for MSSql):
CREATE INDEX IX_journal_persistence_id_ordering ON journal (persistence_id, ordering DESC);
CREATE INDEX IX_journal_persistence_id ON journal (persistence_id);
The text was updated successfully, but these errors were encountered:
Version Information
Version of Akka.Persistence.Sql? Latest
Describe the bug
All SQL tables are missing crucial indexes that potentially makes query slower
We need to add these indexes available on all flavor of SQL tables (example is for MSSql):
The text was updated successfully, but these errors were encountered: