This is an automated email from the ASF dual-hosted git repository. rusackas pushed a commit to branch docs-parquet-extension-registry in repository https://gitbox.apache.org/repos/asf/superset.git
commit 1b5fc0c2726f67814a834fe632eb480aeb9961fd Author: Evan Rusackas <[email protected]> AuthorDate: Thu Dec 18 16:58:16 2025 -0800 docs: add SQL Lab Export to Parquet to community extensions registry Adds a new community extension that allows users to export SQL Lab query results directly to Apache Parquet format with Snappy compression. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]> --- docs/developer_portal/extensions/registry.md | 1 + docs/static/img/extensions/parquet-export.png | Bin 0 -> 62473 bytes 2 files changed, 1 insertion(+) diff --git a/docs/developer_portal/extensions/registry.md b/docs/developer_portal/extensions/registry.md index dbfd1285fd..379985a6b9 100644 --- a/docs/developer_portal/extensions/registry.md +++ b/docs/developer_portal/extensions/registry.md @@ -33,6 +33,7 @@ This page serves as a registry of community-created Superset extensions. These e | [Extensions API Explorer](https://github.com/michael-s-molina/superset-extensions/tree/main/api_explorer) | A SQL Lab panel that demonstrates the Extensions API by providing an interactive explorer for testing commands like getTabs, getCurrentTab, and getDatabases. Useful for extension developers to understand and experiment with the available APIs. | Michael S. Molina | <a href="/img/extensions/api-explorer.png" target="_blank"><img src="/img/extensions/api-explorer.png" alt="Extensi [...] | [SQL Query Flow Visualizer](https://github.com/msyavuz/superset-sql-visualizer) | A SQL Lab panel that transforms SQL queries into interactive flow diagrams, helping developers and analysts understand query execution paths and data relationships. | Mehmet Salih Yavuz | <a href="/img/extensions/sql-flow-visualizer.png" target="_blank"><img src="/img/extensions/sql-flow-visualizer.png [...] | [SQL Lab Export to Google Sheets](https://github.com/michael-s-molina/superset-extensions/tree/main/sqllab_gsheets) | A Superset extension that allows users to export SQL Lab query results directly to Google Sheets. | Michael S. Molina | <a href="/img/extensions/gsheets-export.png" target="_blank"><img src="/img/extensions/gsheets-export.png" alt="SQL Lab Export to Google Sheets" width="120" /></a> | +| [SQL Lab Export to Parquet](https://github.com/rusackas/superset-extensions/tree/main/sqllab_parquet) | Export SQL Lab query results directly to Apache Parquet format with Snappy compression. | Evan Rusackas | <a href="/img/extensions/parquet-export.png" target="_blank"><img src="/img/extensions/parquet-export.png" alt="SQL Lab Export to Parquet" width="120" /></a> | ## How to Add Your Extension diff --git a/docs/static/img/extensions/parquet-export.png b/docs/static/img/extensions/parquet-export.png new file mode 100644 index 0000000000..ef3a2c332e Binary files /dev/null and b/docs/static/img/extensions/parquet-export.png differ
