摘要

总所周知,阿里云的 PostgreSQL 和 HybridDB for PostgreSQL 和 oss 是全面互通的。 HybridDB for PostgreSQL 由于是 MPP 架构天生包括多个计算节点,能够以为并发的方式读写 oss 上的数据。PostgreSQL 在这方面要差一点,默认情况下只能单进程读写 OSS,不过通过 dblink 的加持,我们也能让 OSS 中的数据快速装载到 PostgreSQL。本文就给大家讲讲这其中的黑科技。

一.准备工作

首先,创建我们要用到的插件。

  1. create extension dblink;
  2. create extension oss_fdw;

二.创建异步化存储过程

  1. -- 异步数据装载的准备工作
  2. CREATE OR REPLACE FUNCTION rds_oss_fdw_load_data_prepare(t_from text, t_to text)
  3. RETURNS bool AS
  4. $BODY$
  5. DECLARE
  6. t_exist int;
  7. curs1 refcursor;
  8. r record;
  9. filepath text;
  10. fileindex int8;
  11. s1 text;
  12. s2 text;
  13. s3 text;
  14. c int = 0;
  15. s4 text;
  16. s5 text;
  17. ss4 text;
  18. ss5 text;
  19. sql text;
  20. BEGIN
  21. create table if not exists oss_fdw_load_status(id BIGSERIAL primary key, filename text, size int8, rows int8 default 0, status int default 0);
  22. select count(*) into t_exist from oss_fdw_load_status;
  23. if t_exist != 0 then
  24. RAISE NOTICE 'oss_fdw_load_status not empty';
  25. return false;
  26. end if;
  27. -- 通过 oss_fdw_list_file 函数,把外部表 t_from 匹配的 OSS 中的文件列到表中
  28. insert into oss_fdw_load_status (filename, size) select name,size from oss_fdw_list_file(t_from) order by size desc;
  29. select count(*) into t_exist from oss_fdw_load_status;
  30. if t_exist = 0 then
  31. RAISE NOTICE 'oss_fdw_load_status empty,not task found';
  32. return false;
  33. end if;
  34. return true;
  35. END;
  36. $BODY$
  37. LANGUAGE plpgsql;
  38. -- 数据装载的工作函数
  39. CREATE OR REPLACE FUNCTION rds_oss_fdw_load_data_execute(t_from text, t_to text, num_work int, pass text)
  40. RETURNS bool AS
  41. $BODY$
  42. DECLARE
  43. t_exist int;
  44. curs1 refcursor;
  45. r record;
  46. filepath text;
  47. fileindex int8;
  48. s1 text;
  49. s2 text;
  50. s3 text;
  51. c int = 0;
  52. s4 text;
  53. s5 text;
  54. ss4 text;
  55. ss5 text;
  56. sql text;
  57. db text;
  58. user text;
  59. BEGIN
  60. select count(*) into t_exist from oss_fdw_load_status;
  61. if t_exist = 0 then
  62. RAISE NOTICE 'oss_fdw_load_status empty';
  63. return false;
  64. end if;
  65. s4 = 'oss_loader';
  66. s5 = 'idle';
  67. ss4 = '''' || s4 ||'''';
  68. ss5 = '''' || s5 ||'''';
  69. sql = 'select count(*) from pg_stat_activity where application_name = ' || ss4 || ' and state != ' || ss5;
  70. select current_database() into db;
  71. select current_user into user;
  72. -- 通过游标,不断获取单个任务
  73. OPEN curs1 FOR SELECT id, filename FROM oss_fdw_load_status order by id;
  74. loop
  75. fetch curs1 into r;
  76. if not found then
  77. exit;
  78. end if;
  79. fileindex = r.id;
  80. filepath = r.filename;
  81. s1 = '''' || t_from ||'''';
  82. s2 = '''' || t_to ||'''';
  83. s3 = '''' || filepath ||'''';
  84. LOOP
  85. -- 查看当前正在工作的任务数,过达到并发数就在这里等待
  86. select a into c from dblink('dbname='||db ||' user='||user || ' password='||pass ,sql)as t(a int);
  87. IF c < num_work THEN
  88. EXIT;
  89. END IF;
  90. RAISE NOTICE 'current runing % loader', c;
  91. perform pg_sleep(1);
  92. END LOOP;
  93. -- 通过 DBLINK 创建异步任务
  94. perform dis_conn('oss_loader_'||fileindex);
  95. perform dblink_connect('oss_loader_'||fileindex, 'dbname='||db ||' user='||user || ' application_name=oss_loader' || ' password='||pass);
  96. perform dblink_send_query('oss_loader_'||fileindex, format('
  97. begin;
  98. select rds_oss_fdw_load_single_file(%s,%s,%s,%s);
  99. end;'
  100. , fileindex, s1, s2, s3)
  101. );
  102. RAISE NOTICE 'runing loader task % filename %',fileindex, filepath;
  103. end loop;
  104. close curs1;
  105. -- 任务分配完成,等待所有任务完成
  106. LOOP
  107. select a into c from dblink('dbname='||db ||' user='||user || ' password='||pass ,sql)as t(a int);
  108. IF c = 0 THEN
  109. EXIT;
  110. END IF;
  111. RAISE NOTICE 'current runing % loader', c;
  112. perform pg_sleep(1);
  113. END LOOP;
  114. return true;
  115. END;
  116. $BODY$
  117. LANGUAGE plpgsql;
  118. -- 单个文件的数据装在函数
  119. CREATE OR REPLACE FUNCTION rds_oss_fdw_load_single_file(taskid int8, t_from text, t_to text, filepath text)
  120. RETURNS void AS
  121. $BODY$
  122. DECLARE
  123. rowscount int8 = 0;
  124. current text;
  125. sql text;
  126. BEGIN
  127. -- 配置 GUC 参数,指定要导入的 OSS 上的文件
  128. perform set_config('oss_fdw.rds_read_one_file',filepath,true);
  129. select current_setting('oss_fdw.rds_read_one_file') into current;
  130. RAISE NOTICE 'begin load %', current;
  131. -- 通过动态 SQL 导入数据
  132. EXECUTE 'insert into '|| t_to || ' select * from ' || t_from;
  133. GET DIAGNOSTICS rowscount = ROW_COUNT;
  134. -- 导入完成后,把结果保存到状态表中
  135. RAISE NOTICE 'end load id % % to % % rows', taskid, filepath, t_to, rowscount;
  136. update oss_fdw_load_status set rows = rowscount,status = 1 where id = taskid;
  137. return;
  138. EXCEPTION
  139. when others then
  140. RAISE 'run rds_oss_fdw_load_single_file with error';
  141. END;
  142. $BODY$
  143. LANGUAGE plpgsql;
  144. -- 关闭连接不报错
  145. create or replace function dis_conn(name) returns void as $$
  146. declare
  147. begin
  148. perform dblink_disconnect($1);
  149. return;
  150. exception when others then
  151. return;
  152. end;
  153. $$ language plpgsql strict;

三.使用函数装载数据

1. 准备数据

  1. select rds_oss_fdw_load_data_prepare('oss_table','lineitem');

执行后,会看到表 oss_fdw_load_status 中,保存了准备导入的所有文件列表,用户可以做适当的删减定制。

2. 数据装载

  1. select rds_oss_fdw_load_data_execute('oss_table','lineitem',10,'mypassword');

函数 rds_oss_fdw_load_data_execute 会等待数据导入的完成才返回。

3. 查询状态

期间,我们可以通过下列 SQL 查看正在工作的异步会话状态

  1. select application_name, state, pid,query, now() - xact_start as xact from pg_stat_activity where state != 'idle' and application_name='oss_loader' order by xact desc;

4.管理状态

同时,我们也可以随时中断数据导入工作

  1. select pg_terminate_backend(pid),application_name, state ,query from pg_stat_activity where state != 'idle' and pid != pg_backend_pid() and application_name='oss_loader';

5. 查看进度

我们也很容易看到整个数据装载的进度(单位 MB)

  1. select
  2. (
  3. select sum(size)/1024/1024 as complete from oss_fdw_load_status where status = 1
  4. )a,
  5. (
  6. select sum(size)/1024/1024 as full from oss_fdw_load_status
  7. )b;

6. 性能

使用 TPCC 100GB的数据进行装载测试,耗时 10 分钟,平均 170MB/S

  1. select rds_oss_fdw_load_data_prepare('t_oss2','lineitem');
  2. select rds_oss_fdw_load_data_execute('t_oss2','lineitem',10,'123456Zwj');
  3. select sum(size)/1024/1024 from oss_fdw_load_status;
  4. ?column?
  5. --------------------
  6. 22561.919849395752
  7. (1 row)
  8. select pg_size_pretty(pg_relation_size(oid)) from pg_class where relname = 'lineitem';
  9. pg_size_pretty
  10. ----------------
  11. 101 GB
  12. (1 row)

总结

本文使用 plsql + dblink 的方式加速了 OSS 的数据导入。另外,大家也可以关注到以下三点

  • 1. PostgreSQL 默认的过程语言 pl/pgsql 相当好用,和 SQL 引擎紧密结合且学习成本低。我们推荐用户把业务逻辑用它实现。使用过程语言相对于在客户端执行 SQL,消除了服务器到和客户端的网络开销,有天然的性能优势。
  • 2. dblink 的异步接口非常适合做性能加速,且和过程语言紧密结合。推荐在 SQL 和 过程语言中使用。
  • 3. 阿里云开发的 oss_fdw 能在 PostgreSQL 和 OSS 之间做快速的数据交换。oss_fdw 支持 CSV 和压缩方式 CSV 数据的读和写,且很容易用并行加速。oss_fdw 的性能相对于 jdbc insert 和 copy 有压倒的性能优势。