Skip to content
Open
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
5 changes: 3 additions & 2 deletions community_extensions/extensions/cache_httpfs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ excerpt: |
extension:
name: cache_httpfs
description: Read cached filesystem for httpfs
version: 0.12.1
version: 0.12.2
language: C++
build: cmake
license: MIT
Expand All @@ -19,7 +19,7 @@ extension:

repo:
github: dentiny/duck-read-cache-fs
ref: e66d74d25bcc3866c036a65c435d547c1fccf902
ref: ec98b83797a85c6f6ddaf0bdcd5c6397639e5316

docs:
hello_world: |
Expand Down Expand Up @@ -98,6 +98,7 @@ LOAD {{ page.extension.name }};
| cache_httpfs_cache_block_size | Block size for cache, applies to both in-memory cache filesystem and on-disk cache filesystem. It's worth noting for on-disk filesystem, all existing cache files are invalidated after config update. | UBIGINT | GLOBAL | [] |
| cache_httpfs_cache_directories_config | Advanced configuration for on-disk cache. It supports multiple directories, separated by semicolons (';'). Cache blocks will be evenly distributed under different directories deterministically.Between different runs, it's expected to provide same cache directories, otherwise it's not guaranteed cache files still exist and accessible.Overrides 'cache_httpfs_cache_directory' if set. | VARCHAR | GLOBAL | [] |
| cache_httpfs_cache_directory | The disk cache directory that stores cached data | VARCHAR | GLOBAL | [] |
| cache_httpfs_clear_cache_on_write | Whether to clear cache entries on write operations. When enabled, write operations will invalidate cached metadata, file handles, and glob entries for the modified file, which could be expensive.Disabling this can improve write performance when many cache entries exist, but may lead to stale cache reads. By default disabled. | BOOLEAN | GLOBAL | [] |
| cache_httpfs_disk_cache_reader_enable_memory_cache | Whether enable process-wise read-through/write-through cache for disk cache reader. When enabled, local cache file will be accessed with direct IO. | BOOLEAN | GLOBAL | [] |
| cache_httpfs_disk_cache_reader_mem_cache_block_count | Max number of cache blocks for the read-through/write-through cache for disk cache reader. | UBIGINT | GLOBAL | [] |
| cache_httpfs_disk_cache_reader_mem_cache_timeout_millisec | Timeout in milliseconds for the read-through/write-through cache for disk cache reader. | UBIGINT | GLOBAL | [] |
Expand Down
4 changes: 2 additions & 2 deletions community_extensions/extensions/duckherder.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ docs:
Users are allowed to implement their own driver and worker(s), and register to the duckdb client-side, as long they speaks duckherder dialect (i.e., grpc stubs and arrow flight).
From users' perspective, all DML and DDL SQL statements should be used exactly the same as local duckdb.

extension_star_count: 41
extension_star_count_pretty: 41
extension_star_count: 42
extension_star_count_pretty: 42
extension_download_count: 492
extension_download_count_pretty: 492
image: '/images/community_extensions/social_preview/preview_community_extension_duckherder.png'
Expand Down
4 changes: 2 additions & 2 deletions community_extensions/extensions/mongo.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ docs:
joins, aggregations, and complex analytical operations.


extension_star_count: 27
extension_star_count_pretty: 27
extension_star_count: 28
extension_star_count_pretty: 28
extension_download_count: 538
extension_download_count_pretty: 538
image: '/images/community_extensions/social_preview/preview_community_extension_mongo.png'
Expand Down
4 changes: 2 additions & 2 deletions community_extensions/extensions/onager.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ docs:
For more information, visit the [GitHub repository](https://github.com/CogitatorTech/onager)
or the [Onager documentation](https://cogitatortech.github.io/onager/).

extension_star_count: 102
extension_star_count_pretty: 102
extension_star_count: 103
extension_star_count_pretty: 103
extension_download_count: 487
extension_download_count_pretty: 487
image: '/images/community_extensions/social_preview/preview_community_extension_onager.png'
Expand Down
11 changes: 4 additions & 7 deletions community_extensions/extensions/otlp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,18 @@ excerpt: |
extension:
name: otlp
description: Read OpenTelemetry metrics, logs and traces from JSON or protobuf with a ClickHouse-inspired schema
version: 0.2.0
version: 0.3.0
language: C++
build: cmake
license: MIT
# needed for protobuf
vcpkg_commit: 35c82bb582adab830e1d14f9c4100d251b30aff4
excluded_platforms: ""
excluded_platforms: "wasm_mvp;wasm_threads;linux_amd64_musl"
requires_toolchains: rust
maintainers:
- smithclay

repo:
github: smithclay/duckdb-otlp
ref: 37754c54f7fa371dcfec2b1312dd88c2def2c061
ref: 9a9b96ea360f990954e9e3d69d090fbdfcc7a64a

docs:
hello_world: |
Expand Down Expand Up @@ -134,8 +133,6 @@ LOAD {{ page.extension.name }};
| read_otlp_metrics_histogram | table | NULL | NULL | |
| read_otlp_metrics_sum | table | NULL | NULL | |
| read_otlp_metrics_summary | table | NULL | NULL | |
| read_otlp_options | table | NULL | NULL | |
| read_otlp_scan_stats | table | NULL | NULL | |
| read_otlp_traces | table | NULL | NULL | |


4 changes: 2 additions & 2 deletions community_extensions/extensions/rusty_sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ docs:
The DuckDB rusty-sheet extension that enables reading Excel, WPS and OpenDocument spreadsheet files directly within SQL queries. This extension provides seamless integration for analyzing spreadsheet data using DuckDB's powerful SQL engine.
For detailed setup and usage instructions, visit the docs at [rusty-sheet](https://github.com/redraiment/rusty-sheet).

extension_star_count: 58
extension_star_count_pretty: 58
extension_star_count: 59
extension_star_count_pretty: 59
extension_download_count: 661
extension_download_count_pretty: 661
image: '/images/community_extensions/social_preview/preview_community_extension_rusty_sheet.png'
Expand Down