Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,12 @@

quarkus.log.file.enable=false
quarkus.datasource.devservices.image-name=postgres:17-alpine

# Prevent the 'Hibernate Validator does not support constraints on static methods yet.' warning log messages on
# code generated by the OpenAPI generator. The warning can only be silenced via a log level setting.
# See https://github.com/quarkusio/quarkus/blob/15f6b4426512c04a54e7a0bd87f894fabe068c07/extensions/hibernate-validator/deployment/src/main/java/io/quarkus/hibernate/validator/deployment/MethodValidatedAnnotationsTransformer.java#L51-L53
# and how the 'LOGGER' is setup.
quarkus.log.category."io.quarkus.hibernate.validator.deployment".level=ERROR
# Silence the FJP warning, nothing we can do about it.
# See https://github.com/quarkusio/quarkus/blob/15f6b4426512c04a54e7a0bd87f894fabe068c07/core/deployment/src/main/java/io/quarkus/runner/bootstrap/ForkJoinClassLoading.java#L41-L42
quarkus.log.category."io.quarkus.runner.bootstrap.ForkJoinClassLoading".level=FATAL
9 changes: 9 additions & 0 deletions quarkus/defaults/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,18 @@ polaris.oidc.principal-roles-mapper.type=default
# polaris.storage.gcp.lifespan=PT1H

quarkus.arc.ignored-split-packages=\
org.apache.polaris.service.catalog.api,\
org.apache.polaris.service.catalog.api.impl,\
org.apache.polaris.service.quarkus.metrics,\
org.apache.polaris.service.quarkus.config,\
org.apache.polaris.service.quarkus.auth,\
org.apache.polaris.service.quarkus.auth.external,\
org.apache.polaris.service.quarkus.auth.external.mapping,\
org.apache.polaris.service.quarkus.auth.external.tenant,\
org.apache.polaris.service.quarkus.auth.internal,\
org.apache.polaris.service.quarkus.events,\
org.apache.polaris.service.quarkus.task,\
org.apache.polaris.service.quarkus.secrets,\
org.apache.polaris.service.quarkus.storage,\
org.apache.polaris.service.quarkus.tracing,\
org.apache.polaris.service.quarkus.ratelimiter,\
Expand All @@ -201,6 +209,7 @@ quarkus.arc.ignored-split-packages=\
org.apache.polaris.service.quarkus.context,\
org.apache.polaris.service.quarkus.persistence,\
org.apache.polaris.service.quarkus.logging,\
org.apache.polaris.service.types,\
org.apache.polaris.admintool.config,\
org.apache.polaris.admintool

Expand Down
3 changes: 3 additions & 0 deletions quarkus/service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ tasks.named<Test>("test").configure {
maxParallelForks = 4
// enlarge the max heap size to avoid out of memory error
maxHeapSize = "4g"
// Silence the 'OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader
// classes because bootstrap classpath has been appended' warning from OpenJDK.
jvmArgs("-Xshare:off")
}

tasks.named<Test>("intTest").configure {
Expand Down
Loading