简体   繁体   中英

Redshift drop/create/select query failing in Data Pipeline

I'm trying to run a daily migration script in Redshift using Data Pipeline.
The script works as expected when I run it directly using SQL Workbench/J, but fails when triggered through Data Pipeline.

I have reproduced the problem with this simple code:

drop table if exists image_stg;
create table image_stg (like image_full); 
select * from image_stg;

When I run it in Data Pipeline, I get this error:

[Amazon](500310) Invalid operation: relation "image_stg" does not exist;

I also got this error once, for the exact same code, without changing anything:

[Amazon](500310) Invalid operation: Relation with OID 108425 does not exist.;

Here's a screenshot of the two error messages:

悲伤的截图

I've found this thread on the AWS forums, but it didn't help: Pipeline started failing on simple Redshift SqlActivity and temp table

What is causing this error? Is there a workaround?

I've contacted Amazon, and it looks like a problem in Data Pipeline.
They did suggest a workaround that seems to work in my case: Change the JDBC connection string from jdbc: ://… to jdbc: ://… . ://…更改为jdbc: ://…

I had the same problem when creating a temporary table in Redshift via Pipeline but the workaround of changing the connection string from jdbc:redshift://… to jdbc:postgresql://… didn't work for me though. My last resort is to create the table as physical table and drop it after use - through Pipeline.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM