gpt4 book ai didi

ubuntu - postgres-xl中的水平分区?

转载 作者:行者123 更新时间:2023-12-04 18:57:50 25 4
gpt4 key购买 nike

我在 ubuntu 中使用 postgres-xl。我有一张 9 行的 table 。我想将该表分为 3 个部分。知道我该怎么做吗?

postgres=# SELECT * FROM cities;
name | location
------+----------
a | 1
a | 2
a | 4
a | 3
a | 4
a | 5
a | 6
a | 11
a | 14
(9 rows)

最佳答案

不确定如何使用 Postgres-XL,但使用 pg_shard extension您可以将表哈希分区为 3 个(或更多)部分:

CREATE TABLE cities (name text, location int);
SELECT master_create_distributed_table('cities', 'location');
SELECT master_create_worker_shards('cities', 3, 2);

要开始使用 pg_shard,您可以在以下位置找到文档:
https://github.com/citusdata/pg_shard

关于ubuntu - postgres-xl中的水平分区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31982324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com