码迷,mamicode.com
首页 > 其他好文 > 详细

postgres 水平分表

时间:2020-07-17 22:30:19      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:from   int   end   cas   task   语句   uid   machine   sel   

https://blog.csdn.net/zpf336/article/details/73809481?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-4.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-4.nonecase

测试了下,速度确实快了很多:
修正下原文的插入语句:


DO $$
DECLARE
i INTEGER := 1;
identityId BIGINT := 200000000001;
BEGIN
  WHILE i < 50 LOOP
    identityId = identityId + 1;
  raise notice ‘%‘,i;
      -- INSERT 语句
      -- 将字符串转为 uuid cast (‘057b8c51-f62f-4260-bdbb-‘ || identityId as uuid)
	  --begin
	  INSERT INTO almart_all
select
	(select
		array_agg(j::date)
	 from generate_series(‘2015-12-10‘::date, ‘2015-12-14‘::date, ‘1 day‘::interval) as t(j)
	)[floor(random()*4)+1] as date_key,
	floor(random()*24) as hour_key,
	floor(random()*1000000)+1 as client_key,
	floor(random()*100000)+1 as item_key,
	floor(random()*20)+1 as account,
	floor(random()*10000)+1 as expense
from
	generate_series(1,50000,1)
commit;
							 
    i = i + 1;
  END LOOP;
END $$;
  1. 可能是以为我电脑的内存太小(2G),数据插入的速度真是堪忧

postgres 水平分表

标签:from   int   end   cas   task   语句   uid   machine   sel   

原文地址:https://www.cnblogs.com/qianxunman/p/13332368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!