Timescale Cloud:性能、扩展、企业级
自托管产品
MST
PostgreSQL 被设计为易于扩展。加载到数据库中的扩展可以像内置功能一样运行。TimescaleDB 扩展了 PostgreSQL 以支持时序数据,为 PostgreSQL 提供了现代数据密集型应用程序所需的高性能、可扩展性和分析能力。如果您使用 Homebrew 或 MacPorts 安装了 TimescaleDB,则无需卸载 PostgreSQL 即可将其卸载。
在
psql
提示符下,移除 TimescaleDB 扩展DROP EXTENSION timescaledb;在命令提示符下,从
postgresql.conf
配置文件中的shared_preload_libraries
中移除timescaledb
nano /opt/homebrew/var/postgresql@14/postgresql.confshared_preload_libraries = ''保存对
postgresql.conf
文件的更改。重启 PostgreSQL
brew services restart postgresql在
psql
提示符下使用\dx
命令检查 TimescaleDB 扩展是否已卸载。输出类似于tsdb-# \dxList of installed extensionsName | Version | Schema | Description-------------+---------+------------+-------------------------------------------------------------------plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language(1 row)卸载 TimescaleDB
brew uninstall timescaledb移除所有依赖项和相关文件
brew remove timescaledb
在
psql
提示符下,移除 TimescaleDB 扩展DROP EXTENSION timescaledb;在命令提示符下,从
postgresql.conf
配置文件中的shared_preload_libraries
中移除timescaledb
nano /opt/homebrew/var/postgresql@14/postgresql.confshared_preload_libraries = ''保存对
postgresql.conf
文件的更改。重启 PostgreSQL
port reload postgresql在
psql
提示符下使用\dx
命令检查 TimescaleDB 扩展是否已卸载。输出类似于tsdb-# \dxList of installed extensionsName | Version | Schema | Description-------------+---------+------------+-------------------------------------------------------------------plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language(1 row)卸载 TimescaleDB 及相关依赖项
port uninstall timescaledb --follow-dependencies
关键词