Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update analytics stack to have more extensions #1088

Merged
merged 4 commits into from
Dec 19, 2024
Merged
Changes from 3 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
51 changes: 45 additions & 6 deletions tembo-stacks/src/stacks/specs/analytics.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Analytics
description: A Postgres instance equipped ParadeDB's pg_analytics extension.
description: A Postgres instance optimized for analytics workloads.
repository: "quay.io/tembo"
organization: tembo
images:
14: "standard-cnpg:14-30219f2"
15: "standard-cnpg:15-30219f2"
16: "standard-cnpg:16-30219f2"
17: "standard-cnpg:17-30219f2"
14: "dw-cnpg:14-30219f2"
15: "dw-cnpg:15-30219f2"
16: "dw-cnpg:16-30219f2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not ready for 17 yet?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think columnar doesn't support PG17 yet.

stack_version: 0.1.0
postgres_config_engine: olap
postgres_config:
Expand All @@ -23,21 +22,43 @@ postgres_config:
- name: pg_stat_statements.track
value: top
- name: shared_preload_libraries
value: pg_stat_statements,pg_cron
value: pg_stat_statements, pg_cron, pg_later, pg_parquet
- name: track_io_timing
value: 'on'
- name: wal_level
value: logical
- name: pglater.host
value: postgresql:///postgres?host=/controller/run
trunk_installs:
- name: hydra_columnar
version: 1.1.1
ChuckHend marked this conversation as resolved.
Show resolved Hide resolved
- name: pg_stat_statements
version: 1.10.0
- name: pg_partman
version: 5.0.1
- name: pg_cron
version: 1.6.2
- name: pg_later
version: 0.3.0
- name: pg_analytics
version: 0.2.1
- name: pg_parquet
version: 0.2.0
- name: postgres_fdw
version: 1.1.0
- name: wrappers
version: 0.4.2
extensions:
- name: columnar
locations:
- database: postgres
enabled: true
version: "11.1-10"
- name: pg_later
locations:
- database: postgres
enabled: true
version: 0.1.1
- name: pg_stat_statements
locations:
- database: postgres
Expand All @@ -54,9 +75,27 @@ extensions:
- database: postgres
enabled: true
version: 1.6.2
- name: postgres_fdw
description: postgres_fdw
locations:
- database: postgres
enabled: true
version: "1.1"
- name: wrappers
description: wrappers
locations:
- database: postgres
enabled: true
version: 0.4.2
- name: pg_analytics
description: pg_analytics
locations:
- database: postgres
enabled: true
version: 0.2.1
- name: pg_parquet
description: pg_parquet
locations:
- database: postgres
enabled: true
version: 0.2.0