|
17 | 17 | # under the License.
|
18 | 18 | #
|
19 | 19 |
|
| 20 | +# ---- Build-time configuration ---- |
| 21 | +# Build-time properties take effect when Quarkus processes java classes |
| 22 | +# and creates Polaris jars. These properties cannot be overriden in runtime. |
| 23 | +# Cf. https://quarkus.io/guides/all-config |
| 24 | + |
20 | 25 | quarkus.banner.path=/org/apache/polaris/service/banner.txt
|
| 26 | +quarkus.http.auth.basic=false |
| 27 | +quarkus.http.enable-compression=true |
| 28 | +quarkus.http.enable-decompression=true |
| 29 | +quarkus.http.compress-media-types=application/json,text/html,text/plain |
| 30 | +quarkus.management.enabled=true |
| 31 | +quarkus.micrometer.enabled=true |
| 32 | +quarkus.micrometer.export.prometheus.enabled=true |
| 33 | +quarkus.otel.enabled=true |
| 34 | + |
| 35 | +# ---- Runtime Configuration ---- |
| 36 | +# Below are default values for properties that can be changed in runtime. |
21 | 37 |
|
22 | 38 | quarkus.config.mapping.validate-unknown=true
|
23 | 39 |
|
24 |
| -quarkus.http.auth.basic=false |
25 | 40 | quarkus.http.access-log.enabled=true
|
26 | 41 | # quarkus.http.access-log.pattern=common
|
27 |
| -quarkus.http.enable-compression=true |
28 |
| -quarkus.http.enable-decompression=true |
29 | 42 | quarkus.http.body.handle-file-uploads=false
|
30 | 43 | quarkus.http.limits.max-body-size=10240K
|
31 |
| -quarkus.http.compress-media-types=application/json,text/html,text/plain |
32 | 44 |
|
33 | 45 | quarkus.http.cors.origins=http://localhost:8080
|
34 | 46 | quarkus.http.cors.methods=PATCH, POST, DELETE, GET, PUT
|
@@ -57,16 +69,9 @@ quarkus.log.category."org.apache.polaris".level=INFO
|
57 | 69 | quarkus.log.category."org.apache.iceberg.rest".level=INFO
|
58 | 70 | quarkus.log.category."io.smallrye.config".level=INFO
|
59 | 71 |
|
60 |
| -quarkus.management.enabled=true |
61 | 72 | quarkus.management.port=8182
|
62 | 73 | quarkus.management.test-port=0
|
63 | 74 |
|
64 |
| -quarkus.micrometer.enabled=true |
65 |
| -quarkus.micrometer.export.prometheus.enabled=true |
66 |
| - |
67 |
| -# quarkus.otel.enabled is a build-time property. If it is disabled at build time, it will not be |
68 |
| -# possible to reset it at runtime, consequently all OTel functionality will be disabled. |
69 |
| -quarkus.otel.enabled=true |
70 | 75 | # quarkus.otel.sdk.disabled is set to `true` by default to avoid spuriour errors about
|
71 | 76 | # trace collector connections being impossible to establish. This setting can be enabled
|
72 | 77 | # at runtime after configuring other OTel properties for proper trace data collection.
|
|
0 commit comments