Skip to content

Releases: ClickHouse/pg_stat_ch

v0.3.11

13 Jun 00:27
36a6582

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

  • feat(arrow): add read_replica_type resource attribute column by @amogiska in #107
  • schema: unify pg_stat_ch events_raw with prod Arrow path, move into Goose layout by @JoshDreamland in #99
  • fix: prevent emit_log_hook OOM recursion from escalating to PANIC/SIGABRT by @iskakaushik in #109
  • docs(readme): replace dashboard screenshot with query insights screenshots by @amogiska in #110
  • ci(release): install libkrb5-dev for libpq-be.h gssapi dependency by @heavycrystal in #111
  • docs(readme): fix image rendering on PGXN and external sites by @amogiska in #112
  • chore(release): bump META.json version to 0.3.11 by @amogiska in #113

Full Changelog: v0.3.10...v0.3.11

v0.3.10

05 Jun 21:50
3fe487e

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

New Contributors

Full Changelog: v0.3.9...v0.3.10

v0.3.9

14 May 21:54
5413424

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

New Contributors

Full Changelog: v0.3.8...v0.3.9

v0.3.8

07 May 19:07
25fb678

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

New Contributors

Full Changelog: v0.3.7...v0.3.8

v0.3.7

05 May 19:11
eb3a5dd

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

  • Migrate from git submodules to vcpkg manifest mode by @iskakaushik in #75
  • Optimize gRPC channel: gzip compression + keepalive + arena tuning by @iskakaushik in #76
  • Add Arrow IPC dependency, GUCs, and SendArrowBatch interface by @iskakaushik in #77
  • Add Arrow IPC batch builder and export path by @iskakaushik in #78
  • chore: reduce LOC by ~20% — drop dead benchmark/perf/unit-test infra by @iskakaushik in #80
  • chore(meta): align extension version with distribution (0.3) by @amogiska in #84

Full Changelog: v0.3.6...v0.3.7

v0.3.6

15 Apr 23:40
103b2f9

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

Full Changelog: v0.3.5...v0.3.6

v0.3.5

13 Apr 20:28
b9caad5

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

  • Docs: setup Mintlify docs for pg_stat_ch by @Blargian in #47
  • Docs: move docs out from under pages directory + add rewrites by @Blargian in #59
  • Docs: fix broken links by @Blargian in #60
  • Docs: comprehensive rewrite with new reference pages by @iskakaushik in #63
  • Move query and error text to DSA for variable-length storage by @iskakaushik in #62
  • Docs: lead install page with prebuilt binaries by @iskakaushik in #64
  • ci: migrate all GitHub Actions runners to 16-core Depot by @iskakaushik in #66
  • chore(meta): bump version to 0.3.5 by @amogiska in #69

New Contributors

Full Changelog: v0.3.4...v0.3.5

v0.3.4

08 Apr 14:45
95f926d

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

  • feat: allow bgworker to start on standbys by @amogiska in #56
  • chore: bump META.json version to 0.3.4 for release by @amogiska in #58

Full Changelog: v0.3.3...v0.3.4

customer-test

07 Apr 22:09
d6185b3

Choose a tag to compare

customer-test Pre-release
Pre-release

Rolling pre-release for customer-test. Updated on every push.

v0.3.3

06 Apr 15:50
8812f67

Choose a tag to compare

Installation

Download the tarball for your PostgreSQL version and architecture, then:

tar -xzf pg_stat_ch-*.tar.gz
cd pg_stat_ch-*/
sudo cp pg_stat_ch.so $(pg_config --pkglibdir)/
sudo cp pg_stat_ch.control pg_stat_ch--*.sql $(pg_config --sharedir)/extension/

See INSTALL.md in the tarball for full instructions.

Debug Symbols

Debug symbol packages (*-debuginfo.tar.gz) are provided for crash analysis.
To use them with a core dump:

tar -xzf pg_stat_ch-*-debuginfo.tar.gz
gdb -ex "set debug-file-directory $(pwd)" -ex "bt" pg_stat_ch.so core

What's Changed

  • fix(ci): remove jq version rewrite from PGXN workflow by @amogiska in #52
  • Normalize executor and utility query text with $N placeholders by @iskakaushik in #51
  • Refactor exporter files: reduce noise and improve structure by @iskakaushik in #54
  • chore: bump META.json version to 0.3.3 by @amogiska in #55

Full Changelog: v0.3.2...v0.3.3