Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个场景,我从一个数据库(postgres)中获取数据并将数据加载到另一个数据库中的表中(Redshift)
无论如何在水壶中安排这项工作?
它是一个简单的insert into redshift select * from postgres
insert into redshift select * from postgres
使用表输出步骤可能会非常缓慢,因为 Redshift 针对批量插入进行了优化,而不是逐行插入。AFAIK,Kettle 中没有用于批量插入 Redshift 的步骤/插件。您可以做的是在 Shell 步骤中创建一个脚本: