Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartwdouglas/bcfbc9624d7e132792f79e3868e90201 to your computer and use it in GitHub Desktop.
Save stuartwdouglas/bcfbc9624d7e132792f79e3868e90201 to your computer and use it in GitHub Desktop.
#
# The timeout before cancelling the acquisition of a new connection
#
#quarkus.agroalRuntime.defaultDataSource.acquisitionTimeout=5
#
# The interval at which we validate idle connections in the background
#
#quarkus.agroalRuntime.defaultDataSource.backgroundValidationInterval=2M
#
# The interval at which we try to remove idle connections.
#
#quarkus.agroalRuntime.defaultDataSource.idleRemovalInterval=5M
#
# The initial size of the pool
#
#quarkus.agroalRuntime.defaultDataSource.initialSize=
#
# The interval at which we check for connection leaks.
#
#quarkus.agroalRuntime.defaultDataSource.leakDetectionInterval=
#
# The datasource pool maximum size
#
#quarkus.agroalRuntime.defaultDataSource.maxSize=20
#
# The datasource pool minimum size
#
#quarkus.agroalRuntime.defaultDataSource.minSize=5
#
# The datasource password
#
#quarkus.agroalRuntime.defaultDataSource.password=
#
# The transaction isolation level.
#
#quarkus.agroalRuntime.defaultDataSource.transactionIsolationLevel=
#
# The datasource URL
#
#quarkus.agroalRuntime.defaultDataSource.url=
#
# The datasource username
#
#quarkus.agroalRuntime.defaultDataSource.username=
#
# The timeout before cancelling the acquisition of a new connection
#
#quarkus.agroalRuntime.namedDataSources.*.acquisitionTimeout=5
#
# The interval at which we validate idle connections in the background
#
#quarkus.agroalRuntime.namedDataSources.*.backgroundValidationInterval=2M
#
# The interval at which we try to remove idle connections.
#
#quarkus.agroalRuntime.namedDataSources.*.idleRemovalInterval=5M
#
# The initial size of the pool
#
#quarkus.agroalRuntime.namedDataSources.*.initialSize=
#
# The interval at which we check for connection leaks.
#
#quarkus.agroalRuntime.namedDataSources.*.leakDetectionInterval=
#
# The datasource pool maximum size
#
#quarkus.agroalRuntime.namedDataSources.*.maxSize=20
#
# The datasource pool minimum size
#
#quarkus.agroalRuntime.namedDataSources.*.minSize=5
#
# The datasource password
#
#quarkus.agroalRuntime.namedDataSources.*.password=
#
# The transaction isolation level.
#
#quarkus.agroalRuntime.namedDataSources.*.transactionIsolationLevel=
#
# The datasource URL
#
#quarkus.agroalRuntime.namedDataSources.*.url=
#
# The datasource username
#
#quarkus.agroalRuntime.namedDataSources.*.username=
#
# The name of the application.
# If not set, defaults to the name of the project.
#
#quarkus.application.name=
#
# The version of the application.
# If not set, defaults to the version of the project
#
#quarkus.application.version=
#
# If set to true {@code @Inject} is automatically added to all non-static fields that are annotated with
# one of the annotations defined by {@link AutoInjectAnnotationBuildItem}.
#
#quarkus.arc.autoInjectFields=true
#
# If set to all (or true) the container will attempt to remove all unused beans.
#
# An unused bean:
#
# - is not a built-in bean or interceptor,
# - is not eligible for injection to any injection point,
# - is not excluded by any extension,
# - does not have a name,
# - does not declare an observer,
# - does not declare any producer which is eligible for injection to any injection point,
# - is not directly eligible for injection into any {@link javax.enterprise.inject.Instance} injection point
# </ul>
# If set to none (or false) no beans will ever be removed even if they are unused (according to the criteria
# set out above)
# If set to fwk, then all unused beans will be removed, except the unused beans whose classes are declared
# in the application code
# @see UnremovableBeanBuildItem
#
#quarkus.arc.removeUnusedBeans=all
#
# The size of a batch when using batch loading to load entities and collections.
#
# -1 means batch loading is disabled.
#
#quarkus.hibernateOrm.batchFetchSize=-1
#
# The maximum time before an object is considered expired.
#
#quarkus.hibernateOrm.cache.*.expiration.maxIdle=
#
# The maximum number of objects kept in memory.
#
#quarkus.hibernateOrm.cache.*.memory.objectCount=
#
# The charset of the database.
#
#quarkus.hibernateOrm.database.charset=
#
# The default database catalog.
#
#quarkus.hibernateOrm.database.defaultCatalog=
#
# The default database schema.
#
#quarkus.hibernateOrm.database.defaultSchema=
#
# Control how schema generation is happening in Hibernate ORM.
#
# Same as JPA's javax.persistence.schema-generation.database.action.
#
#quarkus.hibernateOrm.database.generation=
#
# Whether we should stop schema application at the first error or continue.
#
#quarkus.hibernateOrm.database.generationHaltOnError=false
#
# The hibernate ORM dialect class name
#
#quarkus.hibernateOrm.dialect=
#
# The storage engine used by the dialect if it supports several storage engines.
#
# This is the case of MariaDB.
#
#quarkus.hibernateOrm.dialectStorageEngine=
#
# The number of updates (inserts, updates and deletes) that are sent to the database at one time for execution.
#
#quarkus.hibernateOrm.jdbc.statementBatchSize=
#
# How many rows are fetched at a time by the JDBC driver.
#
#quarkus.hibernateOrm.jdbc.statementFetchSize=
#
# The timezone pushed to the JDBC driver.
#
#quarkus.hibernateOrm.jdbc.timezone=
#
# Whether JDBC warnings should be collected and logged.
#
# Default value depends on the dialect.
#
#quarkus.hibernateOrm.log.jdbcWarnings=
#
# Whether we log all the SQL queries executed.
#
# Setting it to true is obviously not recommended in production.
#
#quarkus.hibernateOrm.log.sql=false
#
# The default ordering of nulls specific in the ORDER BY clause.
#
# Valid values are: none, first, last.
#
#quarkus.hibernateOrm.query.defaultNullOrdering=
#
# The max size of the query plan cache.
#
#quarkus.hibernateOrm.query.queryPlanCacheMaxSize=
#
# To populate the database tables with data before the application loads,
# specify the location of a load script.
# The location specified in this property is relative to the root of the persistence unit.
#
#quarkus.hibernateOrm.sqlLoadScript=
#
# Statistics configuration.
#
#quarkus.hibernateOrm.statistics=false
#
#
#quarkus.hotReload.password=
#
#
#quarkus.hotReload.url=
#
# HTTP headers exposed in CORS
#
# Comma separated list of valid headers. ex: X-Custom,Content-Disposition
# default: <empty>
#
#quarkus.http.cors.exposedHeaders=
#
# HTTP headers allowed for CORS
#
# Comma separated list of valid headers. ex: X-Custom,Content-Disposition
# The filter allows any header if this is not set.
# default: returns any requested header as valid
#
#quarkus.http.cors.headers=
#
# HTTP methods allowed for CORS
#
# Comma separated list of valid methods. ex: GET,PUT,POST
# The filter allows any method if this is not set.
# default: returns any requested method as valid
#
#quarkus.http.cors.methods=
#
# Origins allowed for CORS
#
# Comma separated list of valid URLs. ex: http://www.quarkus.io,http://localhost:3000
# The filter allows any origin if this is not set.
# default: returns any requested origin as valid
#
#quarkus.http.cors.origins=
#
# The HTTP host
#
#quarkus.http.host=0.0.0.0
#
# The number if IO threads used to perform IO. This will be automatically set to a reasonable value based on
# the number of CPU cores if it is not provided
#
#quarkus.http.ioThreads=
#
# The HTTP port
#
#quarkus.http.port=8080
#
# The file path to a server certificate or certificate chain in PEM format.
#
#quarkus.http.ssl.certificate.file=
#
# The file path to the corresponding certificate private key file in PEM format.
#
#quarkus.http.ssl.certificate.keyFile=
#
# An optional key store which holds the certificate information instead of specifying separate files.
#
#quarkus.http.ssl.certificate.keyStoreFile=
#
# An optional parameter to specify type of the key store file. If not given, the type is automatically detected
# based on the file name.
#
#quarkus.http.ssl.certificate.keyStoreFileType=
#
# A parameter to specify the password of the key store file. If not given, the default ("password") is used.
#
#quarkus.http.ssl.certificate.keyStorePassword=password
#
# The cipher suites to use. If none is given, a reasonable default is selected.
#
#quarkus.http.ssl.cipherSuites=
#
# The list of protocols to explicitly enable.
#
#quarkus.http.ssl.protocols=TLSv1.3,TLSv1.2
#
# The SSL provider name to use. If none is given, the platform default is used.
#
#quarkus.http.ssl.providerName=
#
# The SSL session cache size. If not given, the platform default is used.
#
#quarkus.http.ssl.sessionCacheSize=
#
# The SSL session cache timeout. If not given, the platform default is used.
#
#quarkus.http.ssl.sessionTimeout=
#
# The HTTPS port
#
#quarkus.http.sslPort=8443
#
# The HTTP port used to run tests
#
#quarkus.http.testPort=8081
#
# The HTTPS port used to run tests
#
#quarkus.http.testSslPort=8444
#
# The maven artifactId of the artifact to index
#
#quarkus.indexDependency.indexDependency.*.artifactId=
#
# The maven classifier of the artifact to index
#
#quarkus.indexDependency.indexDependency.*.classifier=
#
# The maven groupId of the artifact to index
#
#quarkus.indexDependency.indexDependency.*.groupId=
#
# The hostname and port for communicating with agent via UDP
#
#quarkus.jaeger.agentHostPort=
#
# Authentication Token to send as "Bearer" to the endpoint
#
#quarkus.jaeger.authToken=
#
# The traces endpoint, in case the client should connect directly to the Collector,
# like http://jaeger-collector:14268/api/traces
#
#quarkus.jaeger.endpoint=
#
# Password to send as part of "Basic" authentication to the endpoint
#
#quarkus.jaeger.password=
#
# Comma separated list of formats to use for propagating the trace context. Defaults to the
# standard Jaeger format. Valid values are jaeger and b3
#
#quarkus.jaeger.propagation=
#
# The reporter's flush interval
#
#quarkus.jaeger.reporterFlushInterval=
#
# Whether the reporter should also log the spans
#
#quarkus.jaeger.reporterLogSpans=
#
# The reporter's maximum queue size
#
#quarkus.jaeger.reporterMaxQueueSize=
#
# The host name and port when using the remote controlled sampler
#
#quarkus.jaeger.samplerManagerHostPort=
#
# The sampler parameter (number)
#
#quarkus.jaeger.samplerParam=
#
# The sampler type (const, probabilistic, ratelimiting or remote)
#
#quarkus.jaeger.samplerType=
#
# The sender factory class name
#
#quarkus.jaeger.senderFactory=
#
# The service name
#
#quarkus.jaeger.serviceName=
#
# A comma separated list of name = value tracer level tags, which get added to all reported
# spans. The value can also refer to an environment variable using the format ${envVarName:default},
# where the :default is optional, and identifies a value to be used if the environment variable
# cannot be found
#
#quarkus.jaeger.tags=
#
# Username to send as part of "Basic" authentication to the endpoint
#
#quarkus.jaeger.user=
#
# The log level level for this category
#
#quarkus.log.categories.*.level=inherit
#
# The minimum level that this category can be set to
#
#quarkus.log.categories.*.minLevel=inherit
#
# Indicates whether to log asynchronously
#
#quarkus.log.console.async.enable=false
#
# Determine whether to block the publisher (rather than drop the message) when the queue is full
#
#quarkus.log.console.async.overflow=BLOCK
#
# The queue length to use before flushing writing
#
#quarkus.log.console.async.queueLength=512
#
# If the console logging should be in color
#
#quarkus.log.console.color=true
#
# Specify how much the colors should be darkened
#
#quarkus.log.console.darken=0
#
# If console logging should be enabled
#
#quarkus.log.console.enable=true
#
# The log format
#
#quarkus.log.console.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c{3.}] (%t) %s%e%n
#
# The console log level
#
#quarkus.log.console.level=ALL
#
# Indicates whether to log asynchronously
#
#quarkus.log.file.async.enable=false
#
# Determine whether to block the publisher (rather than drop the message) when the queue is full
#
#quarkus.log.file.async.overflow=BLOCK
#
# The queue length to use before flushing writing
#
#quarkus.log.file.async.queueLength=512
#
# If file logging should be enabled
#
#quarkus.log.file.enable=false
#
# The log format
#
#quarkus.log.file.format=%d{yyyy-MM-dd HH:mm:ss,SSS} %h %N[%i] %-5p [%c{3.}] (%t) %s%e%n
#
# The file log level
#
#quarkus.log.file.level=ALL
#
# The file logging log level
#
#quarkus.log.file.path=quarkus.log
#
# File handler rotation file suffix.
#
# Example fileSuffix: .yyyy-MM-dd
#
#quarkus.log.file.rotation.fileSuffix=
#
# The maximum number of backups to keep.
#
#quarkus.log.file.rotation.maxBackupIndex=1
#
# The maximum file size of the log file after which a rotation is executed.
#
#quarkus.log.file.rotation.maxFileSize=
#
# Indicates whether to rotate log files on server initialization.
#
#quarkus.log.file.rotation.rotateOnBoot=true
#
# The message starts to match
#
#quarkus.log.filters.*.ifStartsWith=inherit
#
# The default log level
#
#quarkus.log.level=
#
# The default minimum log level
#
#quarkus.log.minLevel=INFO
#
# The node name used by the transaction manager
#
#quarkus.narayanaJta.nodeName=quarkus
#
# The XA node name used by the transaction manager
#
#quarkus.narayanaJta.xaNodeName=
#
# Set this to override the default path for JAX-RS resources if there are no
# annotated application classes.
#
#quarkus.resteasy.path=/
#
# If this is true then JAX-RS will use only a single instance of a resource
# class to service all requests.
#
# If this is false then it will create a new instance of the resource per
# request.
# If the resource class has an explicit CDI scope annotation then the value of
# this annotation will always be used to control the lifecycle of the resource
# class.
# IMPLEMENTATION NOTE: {@code javax.ws.rs.Path} turns into a CDI stereotype
# with singleton scope. As a result, if a user annotates a JAX-RS resource with
# a stereotype which has a different default scope the deployment fails with
# IllegalStateException.
#
#quarkus.resteasy.singletonResources=true
#
# If gzip is enabled
#
#quarkus.resteasyCommon.gzip.enabled=false
#
# Maximum deflated file bytes size
#
# If the limit is exceeded, Resteasy will return Response
# with status 413("Request Entity Too Large")
#
#quarkus.resteasyCommon.gzip.maxInput=
#
# The path of the health-checking servlet.
#
#quarkus.smallRyeHealth.path=/health
#
# The path to the metrics Servlet.
#
#quarkus.smallRyeMetrics.path=/metrics
#
# The path at which to register the OpenAPI Servlet.
#
#quarkus.smallRyeOpenApi.path=/openapi
#
# Enable native SSL support.
#
#quarkus.ssl.native_=
#
# If this should be included every time. By default this is only included when the application is running
# in dev mode.
#
#quarkus.swaggerUi.alwaysInclude=false
#
# The path of the swagger-ui servlet.
#
#quarkus.swaggerUi.path=/swagger-ui
#
# The core thread pool size. This number of threads will always be kept alive.
#
#quarkus.threadPool.coreThreads=1
#
# The executor growth resistance.
#
# A resistance factor applied after the core pool is full; values applied here will cause that fraction
# of submissions to create new threads when no idle thread is available. A value of {@code 0.0f} implies that
# threads beyond the core size should be created as aggressively as threads within it; a value of {@code 1.0f}
# implies that threads beyond the core size should never be created.
#
#quarkus.threadPool.growthResistance=0
#
# The amount of time a thread will stay alive with no work.
#
#quarkus.threadPool.keepAliveTime=30
#
# The maximum number of threads. If this is not specified then
# it will be automatically sized to 4 * the number of available processors
#
#quarkus.threadPool.maxThreads=
#
# The queue size. For most applications this should be unbounded
#
#quarkus.threadPool.queueSize=0
#
# The frequency at which the status of the thread pool should be checked during shutdown. Information about
# waiting tasks and threads will be checked and possibly logged at this interval. Setting this key to an empty
# value disables the shutdown check interval.
#
#quarkus.threadPool.shutdownCheckInterval=5
#
# The amount of time to wait for thread pool shutdown before tasks should be interrupted. If this value is
# greater than or equal to the value for {@link #shutdownTimeout}, then tasks will not be interrupted before
# the shutdown timeout occurs.
#
#quarkus.threadPool.shutdownInterrupt=10
#
# The shutdown timeout. If all pending work has not been completed by this time
# then additional threads will be spawned to attempt to finish any pending tasks, and the shutdown process will
# continue
#
#quarkus.threadPool.shutdownTimeout=1M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment