mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
fix(migrations): event sequence as hash shared index (#528)
* one concurrent task * disable spooler * fix: improve concurrency in spooler * fix: dont block lock * fix: break if lock failed * fix: check if handler is working * fix: worker id * fix: test * fix: use limit for spoolers configured in startup.yaml * fix test * fix: factory * fix(key): only reduce if not expired * fix(searchQueryFactory): check for string-slice in aggregateID * fix(migrations): combine migrations * fix: allow saving multiple objects in one request * fix(eventstore): logging * fix(eventstore): rethink insert i locks table * fix: ignore failed tests for the moment * fix: tuubel * fix: for tests in io * fix: ignore tests for io * fix: rename concurrent tasks to workers * fix: incomment tests and remove some tests * fix: refert changes for io * refactor(eventstore): combine types of sql in one file * refactor(eventstore): logs, TODO's, tests * fix(eventstore): sql package * test(eventstore): add tests for search query factory * chore: logs * fix(spooler): optimize lock query chore(migrations): rename locks.object_type to view_name chore(migrations): refactor migrations * test: incomment tests * fix: rename PrepareSaves to PrepareBulkSave * chore: go dependencies * fix(migrations): add id in events table * refactor(lock): less magic numbers * fix(migrations): event_sequence as hash shared index Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
parent
da0df27679
commit
42e24e3508
@ -7,6 +7,7 @@ GRANT UPDATE ON TABLE eventstore.event_seq TO auth;
|
||||
GRANT UPDATE ON TABLE eventstore.event_seq TO authz;
|
||||
GRANT UPDATE ON TABLE eventstore.event_seq TO notification;
|
||||
|
||||
SET experimental_enable_hash_sharded_indexes = on;
|
||||
|
||||
CREATE TABLE eventstore.events (
|
||||
id UUID DEFAULT gen_random_uuid(),
|
||||
@ -22,7 +23,7 @@ CREATE TABLE eventstore.events (
|
||||
editor_service TEXT NOT NULL,
|
||||
resource_owner TEXT NOT NULL,
|
||||
|
||||
CONSTRAINT event_sequence_pk PRIMARY KEY (event_sequence DESC),
|
||||
CONSTRAINT event_sequence_pk PRIMARY KEY (event_sequence DESC) USING HASH WITH BUCKET_COUNT = 10,
|
||||
INDEX agg_type_agg_id (aggregate_type, aggregate_id),
|
||||
CONSTRAINT previous_sequence_unique UNIQUE (previous_sequence DESC)
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user