Ahmad Coachendo
Ahmad Coachendo

Reputation: 81

CloudSQL PostgreSQL Import Query ERROR Cloud Data Fusion

I am using CloudSQL PostgreSQL to BigQuery Data export using Cloud Data Fusion. Here is the simple import Query with table name "parameter". enter image description here

But I am getting the ERROR about adding condition to Query. I don't think when we specify number of splits = 1 we don't need to specify anything in the Query but here:

Could not find the clause substitution token $CONDITIONS in the query: [SELECT * FROM parameters;]. Parallel splits may not work correctly.

How can I move data from Cloud SQL to BigQuery?

Upvotes: 1

Views: 1018

Answers (1)

FVCC
FVCC

Reputation: 317

Add this WHERE clause to the end of your query WHERE $CONDITIONS, worked for me.

Upvotes: 3

Related Questions