Skip to content

Commit 175d939

Browse files
authored
Introduce storage config for disconnect events (#79)
1 parent 30e0de0 commit 175d939

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

charts/neon-proxy/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: neon-proxy
33
description: Neon Proxy
44
type: application
5-
version: 1.7.22
5+
version: 1.7.23
66
appVersion: "0.1.0"
77
kubeVersion: "^1.18.x-x"
88
home: https://neon.tech

charts/neon-proxy/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# neon-proxy
22

3-
![Version: 1.7.22](https://img.shields.io/badge/Version-1.7.22-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml)
3+
![Version: 1.7.23](https://img.shields.io/badge/Version-1.7.23-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![Lint and Test Charts](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml/badge.svg)](https://github.com/neondatabase/helm-charts/actions/workflows/lint-test.yaml)
44

55
Neon Proxy
66

@@ -86,6 +86,7 @@ Kubernetes: `^1.18.x-x`
8686
| settings.otelExporterDisabled | bool | `false` | Disables OpenTelemetry (will be converted into `OTEL_SDK_DISABLED` environment variable) |
8787
| settings.otelExporterOtlpEndpoint | string | `""` | OpenTelemetry collector URL (will be converted into `OTEL_EXPORTER_OTLP_ENDPOINT` environment variable) |
8888
| settings.parquetUploadCompression | string | `"uncompressed"` | (string) What level of compression to use |
89+
| settings.parquetUploadDisconnectEventsRemoteStorage | string | `""` | (string) Storage location to upload the parquet files with disconnect events to. |
8990
| settings.parquetUploadMaximumDuration | string | `"20m"` | (string) How long to wait before forcing a file upload |
9091
| settings.parquetUploadPageSize | string | `"1048576"` | (string) How large each column page should be in bytes |
9192
| settings.parquetUploadRemoteStorage | string | `""` | (string) Storage location to upload the parquet files to. |

charts/neon-proxy/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ spec:
123123
{{- with .Values.settings.parquetUploadRemoteStorage }}
124124
- --parquet-upload-remote-storage={{ . }}
125125
{{ end }}
126+
{{- with .Values.settings.parquetUploadDisconnectEventsRemoteStorage }}
127+
- --parquet-upload-disconnect-events-remote-storage={{ . }}
128+
{{ end }}
126129
{{- with .Values.settings.parquetUploadRowGroupSize }}
127130
- --parquet-upload-row-group-size={{ . }}
128131
{{ end }}

charts/neon-proxy/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ settings:
7979
authRateLimits: null
8080
# settings.parquetUploadRemoteStorage -- (string) Storage location to upload the parquet files to.
8181
parquetUploadRemoteStorage: ""
82+
# settings.parquetUploadDisconnectEventsRemoteStorage -- (string) Storage location to upload the parquet files with disconnect events to.
83+
parquetUploadDisconnectEventsRemoteStorage: ""
8284
# settings.parquetUploadRowGroupSize -- (string) How many rows to include in a row group
8385
parquetUploadRowGroupSize: "8192"
8486
# settings.parquetUploadPageSize -- (string) How large each column page should be in bytes

0 commit comments

Comments
 (0)