dirigible icon indicating copy to clipboard operation
dirigible copied to clipboard

[DataSources] Custom DataSources with Multitenancy leads to undepleted artefacts

Open delchev opened this issue 1 year ago • 0 comments

Set a few custom DataSources:

export DIRIGIBLE_DATABASE_CUSTOM_DATASOURCES=TEST2,Test4,TEST1,Test3
export TEST1_DRIVER=org.h2.Driver
export TEST1_URL=jdbc:h2:file:./target/dirigible/h2/Test1DB
export TEST1_USERNAME=sa
export TEST1_PASSWORD=
export TEST2_DRIVER=org.h2.Driver
export TEST2_URL=jdbc:h2:file:./target/dirigible/h2/Test2DB
export TEST2_USERNAME=sa
export TEST2_PASSWORD=
export Test3_DRIVER=org.h2.Driver
export Test3_URL=jdbc:h2:file:./target/dirigible/h2/Test3DB
export Test3_USERNAME=sa
export Test3_PASSWORD=
export Test4_DRIVER=org.h2.Driver
export Test4_URL=jdbc:h2:file:./target/dirigible/h2/Test4DB
export Test4_USERNAME=sa
export Test4_PASSWORD=

Then start Dirigible and wait a minute.

Multiple log entries appeared:

2024-03-28 13:21:00.491 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [table] with key: [table:/test-project/schemas/test.schema:TABLE2] in phase: [CREATED]
2024-03-28 13:21:00.492 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [table] with key: [table:/test-project/csvim/TEST_DATA.table:TEST_DATA] in phase: [CREATED]
2024-03-28 13:21:00.494 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/schemas/test.schema:VIEW3] in phase: [CREATED]
2024-03-28 13:21:00.496 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/views/orders.view:ORDERS_VIEW] in phase: [CREATED]
2024-03-28 13:21:00.498 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/schemas/test.schema:VIEW3] in phase: [CREATED]
2024-03-28 13:21:00.499 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/views/orders.view:ORDERS_VIEW] in phase: [CREATED]
2024-03-28 13:21:00.501 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/schemas/test.schema:VIEW3] in phase: [CREATED]
2024-03-28 13:21:00.503 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [view] with key: [view:/test-project/views/orders.view:ORDERS_VIEW] in phase: [CREATED]
2024-03-28 13:21:00.504 [ERROR] [pool-2-thread-1] [background] o.e.d.c.i.s.SynchronizationProcessor - Undepleted Artefact of type: [schema] with key: [schema:/test-project/schemas/test.schema:PUBLIC] in phase: [CREATED]

delchev avatar Mar 28 '24 11:03 delchev