Skip to content

Commit ee8443a

Browse files
author
Quack Mc Docs
committed
chore: update Community Extensions docs
1 parent 974d460 commit ee8443a

File tree

6 files changed

+15
-17
lines changed

6 files changed

+15
-17
lines changed

community_extensions/extensions/cache_httpfs.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ excerpt: |
88
extension:
99
name: cache_httpfs
1010
description: Read cached filesystem for httpfs
11-
version: 0.12.1
11+
version: 0.12.2
1212
language: C++
1313
build: cmake
1414
license: MIT
@@ -19,7 +19,7 @@ extension:
1919

2020
repo:
2121
github: dentiny/duck-read-cache-fs
22-
ref: e66d74d25bcc3866c036a65c435d547c1fccf902
22+
ref: ec98b83797a85c6f6ddaf0bdcd5c6397639e5316
2323

2424
docs:
2525
hello_world: |
@@ -98,6 +98,7 @@ LOAD {{ page.extension.name }};
9898
| 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 | [] |
9999
| 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 | [] |
100100
| cache_httpfs_cache_directory | The disk cache directory that stores cached data | VARCHAR | GLOBAL | [] |
101+
| 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 | [] |
101102
| 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 | [] |
102103
| 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 | [] |
103104
| 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 | [] |

community_extensions/extensions/duckherder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ docs:
3131
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).
3232
From users' perspective, all DML and DDL SQL statements should be used exactly the same as local duckdb.
3333
34-
extension_star_count: 41
35-
extension_star_count_pretty: 41
34+
extension_star_count: 42
35+
extension_star_count_pretty: 42
3636
extension_download_count: 492
3737
extension_download_count_pretty: 492
3838
image: '/images/community_extensions/social_preview/preview_community_extension_duckherder.png'

community_extensions/extensions/mongo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ docs:
3636
joins, aggregations, and complex analytical operations.
3737
3838
39-
extension_star_count: 27
40-
extension_star_count_pretty: 27
39+
extension_star_count: 28
40+
extension_star_count_pretty: 28
4141
extension_download_count: 538
4242
extension_download_count_pretty: 538
4343
image: '/images/community_extensions/social_preview/preview_community_extension_mongo.png'

community_extensions/extensions/onager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ docs:
4444
For more information, visit the [GitHub repository](https://github.com/CogitatorTech/onager)
4545
or the [Onager documentation](https://cogitatortech.github.io/onager/).
4646
47-
extension_star_count: 102
48-
extension_star_count_pretty: 102
47+
extension_star_count: 103
48+
extension_star_count_pretty: 103
4949
extension_download_count: 487
5050
extension_download_count_pretty: 487
5151
image: '/images/community_extensions/social_preview/preview_community_extension_onager.png'

community_extensions/extensions/otlp.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,18 @@ excerpt: |
88
extension:
99
name: otlp
1010
description: Read OpenTelemetry metrics, logs and traces from JSON or protobuf with a ClickHouse-inspired schema
11-
version: 0.2.0
11+
version: 0.3.0
1212
language: C++
1313
build: cmake
1414
license: MIT
15-
# needed for protobuf
16-
vcpkg_commit: 35c82bb582adab830e1d14f9c4100d251b30aff4
17-
excluded_platforms: ""
15+
excluded_platforms: "wasm_mvp;wasm_threads;linux_amd64_musl"
16+
requires_toolchains: rust
1817
maintainers:
1918
- smithclay
2019

2120
repo:
2221
github: smithclay/duckdb-otlp
23-
ref: 37754c54f7fa371dcfec2b1312dd88c2def2c061
22+
ref: 9a9b96ea360f990954e9e3d69d090fbdfcc7a64a
2423

2524
docs:
2625
hello_world: |
@@ -134,8 +133,6 @@ LOAD {{ page.extension.name }};
134133
| read_otlp_metrics_histogram | table | NULL | NULL | |
135134
| read_otlp_metrics_sum | table | NULL | NULL | |
136135
| read_otlp_metrics_summary | table | NULL | NULL | |
137-
| read_otlp_options | table | NULL | NULL | |
138-
| read_otlp_scan_stats | table | NULL | NULL | |
139136
| read_otlp_traces | table | NULL | NULL | |
140137
141138

community_extensions/extensions/rusty_sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ docs:
6464
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.
6565
For detailed setup and usage instructions, visit the docs at [rusty-sheet](https://github.com/redraiment/rusty-sheet).
6666
67-
extension_star_count: 58
68-
extension_star_count_pretty: 58
67+
extension_star_count: 59
68+
extension_star_count_pretty: 59
6969
extension_download_count: 661
7070
extension_download_count_pretty: 661
7171
image: '/images/community_extensions/social_preview/preview_community_extension_rusty_sheet.png'

0 commit comments

Comments
 (0)