Skip to content

Tags: databendlabs/databend

Tags

v1.2.768-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(query): add compatibility check for decimal64 (#18280)

v1.2.636-rc8.5

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(query): parse json support decimal data type (#18282)

* chore(query): parse json support decimal data type

* fix

* fix

* fix copy into

v1.2.767-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: transient table does not work as expected inside explicit transa…

…ction (#18215)

* fix: transient table not work as expected inside explicit txn

* refine code comments

* refine comments

v1.2.766-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: insert with stage support from and file_format clause. (#18256)

* feat: insert with stage support from and file_format clause.

* update tests.

v1.2.765-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Use async lock in reqsign to prevent concurrent update (#18265)

* Remove not used api

Signed-off-by: Xuanwo <github@xuanwo.io>

* Fix

Signed-off-by: Xuanwo <github@xuanwo.io>

---------

Signed-off-by: Xuanwo <github@xuanwo.io>

v1.2.764-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: Add ZIP compression type (#18257)

* feat: Add ZIP compression type

* chore: add meta test for Zip

v1.2.763-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(cache): Add minimum threshold for table data disk cache size (#…

…18227)

* feat(cache): Add minimum threshold for table data disk cache size

Introduce TABLE_DATA_DISK_CACHE_SIZE_THRESHOLD (1024 bytes) to better handle disk
cache enabling logic.

Any configuration value below this threshold will disable the table data disk cache.

This change temporarily addresses an issue with cloud platform deployment where
setting the disk cache size to zero prevents the physical volume from being loaded.

Additional logging for on-disk cache configuration added to improve diagnostics.

* test: add UT

v1.2.762-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(query): Array Functions Supporting ARRAY and VARIANT Types (#18213)

feat(query): Add Array Functions Supporting ARRAY and VARIANT Types

v1.2.761-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: improve the log prefix (#18211)

v1.2.760-nightly

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(meta-service): add metrics for stream access operations (#18210)

Previously, stream-based operations like `mget` and `list` were only counted
as single RPCs in our metrics system, despite potentially sending large
volumes of data. For example, a single `list` RPC fetching a large directory
would appear the same as a simple operation in our metrics.

This commit adds granular metrics to track the actual number of items sent
in stream operations with the following counters:

```
metasrv_meta_network_stream_get_item_sent_total
metasrv_meta_network_stream_mget_item_sent_total
metasrv_meta_network_stream_list_item_sent_total
```