Skip to content

Commit

Permalink
Remove additional timescale refs form 13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ccakes committed Oct 2, 2020
1 parent d457564 commit 3aa37e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ It also contains some helpers for ongoing maintenance

The `pg-11` and `pg-12` branches both contain the TimescaleDB extension however Timescale doesn't yet support Postgres 13. Hopefully [this issue](https://github.com/timescale/timescaledb/issues/2434) will be closed when support is added (maybe in Timescale v2?) and then I'll re-add the extension here.

Accordingly, the Docker tag for this release without Timescale is `13.0-1.gis` (ie no `tsdb`)

### Still running Postgres 11 or 12?

See the [`pg-11`](https://github.com/ccakes/nomad-pgsql-patroni/tree/pg-11) or [`pg-12`](https://github.com/ccakes/nomad-pgsql-patroni/tree/pg-12) branch for a maintained version.
Expand Down
5 changes: 3 additions & 2 deletions files/000_shared_libs.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
#!/usr/bin/env bash
echo "timezone = 'UTC'" >> $PGDATA/postgresql.conf

echo "shared_preload_libraries = 'pg_stat_statements, timescaledb'" >> $PGDATA/postgresql.conf
# echo "shared_preload_libraries = 'pg_stat_statements, timescaledb'" >> $PGDATA/postgresql.conf
echo "shared_preload_libraries = 'pg_stat_statements'" >> $PGDATA/postgresql.conf

echo "pg_stat_statements.max = 10000" >> $PGDATA/postgresql.conf
echo "pg_stat_statements.track = all" >> $PGDATA/postgresql.conf

echo "timescaledb.telemetry_level = off" >> $PGDATA/postgresql.conf
# echo "timescaledb.telemetry_level = off" >> $PGDATA/postgresql.conf

0 comments on commit 3aa37e0

Please sign in to comment.