Mercurial > hg > orthanc-databases
annotate TODO @ 528:fa6d3c5ada3d
release notes
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Mon, 22 Jul 2024 14:57:35 +0200 |
parents | a164d8aebe0e |
children | ec0a100d380e |
rev | line source |
---|---|
196 | 1 |
2 ============================== | |
3 == Orthanc database plugins == | |
4 ============================== | |
5 | |
6 ----------------------- | |
7 Common - Database index | |
8 ----------------------- | |
9 | |
258 | 10 * Performance of joins in LookupResources: Create cached statement for |
11 LookupResources, that are grouped to search up to, say, 10 tags, | |
12 instead of recompiling for each request | |
371 | 13 * Do not log "DatabaseCannotSerialize" errors in the plugin but only |
14 in Orthanc after all retries have been made. | |
424
95c413106a66
Introduced a procedure to delete resources (to be tested)
Alain Mazy <am@osimis.io>
parents:
371
diff
changeset
|
15 * Try to avoid the use of temporary tables: |
95c413106a66
Introduced a procedure to delete resources (to be tested)
Alain Mazy <am@osimis.io>
parents:
371
diff
changeset
|
16 https://discourse.orthanc-server.org/t/image-insert-are-too-slow-databse-performance-too-poor/3820 |
95c413106a66
Introduced a procedure to delete resources (to be tested)
Alain Mazy <am@osimis.io>
parents:
371
diff
changeset
|
17 |
196 | 18 |
502 | 19 * Implement "large queries" for: |
20 - updating all metadata of a resource at once | |
21 - update all maindicomtags of 4 resource levels at once | |
22 | |
23 | |
196 | 24 --------------------- |
25 Common - Storage area | |
26 --------------------- | |
27 | |
28 * Implement the "StoreDicom" option from the default filesystem | |
29 storage area to run MySQL/PostgreSQL storage in index-only mode: | |
426
d700c8f9fc24
migration to UCLouvain servers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
371
diff
changeset
|
30 https://orthanc.uclouvain.be/book/contributing.html |
196 | 31 |
259 | 32 * Performance: Add a pool of connections to PostgreSQL/MySQL, as |
33 already done in the database index plugins | |
34 | |
360 | 35 ---------- |
36 PostgreSQL | |
37 ---------- | |
38 | |
477 | 39 * Check if we can force the schema that is used. By default, Orthanc |
40 is using the 'public' schema but, after a wrong command, we have seen | |
41 a DB where there was a 'AttachedFiles' table in the public schema and another one in a | |
42 'MyPacs' schema and Orthanc was actually using the 'MyPacs.AttachedFiles' table !!! | |
43 Orthanc was then seeing only the most recent attached files !!! | |
44 | |
473
15e609c439d1
Fixed the MaximumStorageSize & MaximumPatientCount.
Alain Mazy <am@osimis.io>
parents:
445
diff
changeset
|
45 * Have a separate "thread" to UpdateStatistics to avoid large computations ? |
15e609c439d1
Fixed the MaximumStorageSize & MaximumPatientCount.
Alain Mazy <am@osimis.io>
parents:
445
diff
changeset
|
46 |
360 | 47 |
365 | 48 * Seems Orthanc might deadlock when there are plenty of conflicting transactions: |
49 https://groups.google.com/g/orthanc-users/c/xQelEcKqL9U/m/HsvxwlkvAQAJ | |
50 https://groups.google.com/g/orthanc-users/c/1bkClfZ0KBA/m/s4AlwVh3CQAJ | |
196 | 51 |
52 ----- | |
53 MySQL | |
54 ----- | |
55 | |
266
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
56 * Store revisions for metadata and attachments in MySQL (this is |
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
57 already implemented in PostgreSQL) |
cc7af42d4f23
Store revisions for metadata and attachments in PostgreSQL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
259
diff
changeset
|
58 |
196 | 59 * MySQL performance => implement GlobalProperty_GetTotalSizeIsFast: |
60 https://groups.google.com/d/msg/orthanc-users/kSR4a110zDo/D7e4ITR8BwAJ | |
258 | 61 |
62 * Add index to speed up wildcard search, as already done in PostgreSQL: | |
63 | |
64 - https://dev.mysql.com/doc/refman/5.5/en/fulltext-search.html + | |
65 ALTER TABLE table ADD FULLTEXT index_name(column1); | |
66 | |
67 - https://dev.mysql.com/doc/refman/8.0/en/index-btree-hash.html | |
482 | 68 |
69 | |
70 ---- | |
71 ODBC | |
72 ---- | |
73 | |
74 * https://orthanc.uclouvain.be/bugs/show_bug.cgi?id=224 |