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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
# Cap on-disk cache size to protect host storage.
SCCACHE_CACHE_SIZE: 20G
CHDB_RUST_REPO: https://github.com/hyperbyte-cloud/chdb-rust.git
CHDB_RUST_REF: feat_arrow_insert
CHDB_RUST_REF: main

jobs:
doc_links:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
SCCACHE_CACHE_SIZE: 10G
CHDB_RUST_REPO: https://github.com/hyperbyte-cloud/chdb-rust.git
CHDB_RUST_REF: feat_arrow_insert
CHDB_RUST_REF: main
REGISTRY: ghcr.io
IMAGE_NAME: hyperbyte-cloud/hyperbytedb
PROXY_IMAGE_NAME: hyperbyte-cloud/hyperbytedb-proxy
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,5 @@ Desktop.ini
.cursorrules
.cursor/
hyperbytedb-operator
influx-multiplay
chdb-rust
chdb-rust
docs/audits/
131 changes: 52 additions & 79 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Dockerfile.proxy-runtime
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

COPY ${TARGETARCH}/hyperbytedb-proxy /usr/local/bin/hyperbytedb-proxy

EXPOSE 8086
EXPOSE 8086 8087

ENV HYPERBYTEDB_PROXY_LISTEN=0.0.0.0:8086 \
HYPERBYTEDB_PROXY_ADMIN_LISTEN=0.0.0.0:8087 \
HYPERBYTEDB_PROXY_BACKEND_PORT=8086

ENTRYPOINT ["/usr/local/bin/hyperbytedb-proxy"]
2 changes: 2 additions & 0 deletions config.toml.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ schema_cache_max_entries = 10000

[auth]
enabled = false
# InfluxDB v1-style ?u=&p= on the query string (unsafe: may appear in logs/Referer)
# allow_query_param_credentials = false

[cardinality]
max_tag_values_per_measurement = 100000
Expand Down
Loading
Loading