Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • change parent/version from 3.0.2 to 3.0.3
  • change properties/syncope.version from 3.0.2 to 3.0.3

Files

console.properties

Remove

Code Block
console.reconciliationReportKey=c3520ad9-179f-49e7-b315-d684d216dd97

Add

Code Block
console.realms-full-tree-threshold=20

Internal Storage

New indexes shall be created to improve overall performance.

PostgreSQL

CREATE INDEX Realm_parent_id ON Realm(parent_id);
CREATE INDEX Realm_fullPath ON Realm(fullPath)
;
CREATE INDEX Realm_fullPath_startsWith ON Realm USING GIN (to_tsvector('english', fullPath));

Oracle | MySQL | MariaDB

CREATE INDEX Realm_parent_id ON Realm(parent_id);
CREATE INDEX Realm_fullPath ON Realm(fullPath)
;