We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When writing to a Redshift push source, the table is written to under the correct schema.
Even if schema is specified in the data source, data is pushed to a table in the default schema.
schema
You can trace this through the code:
abc_source = RedshiftSource( name="abc", table="abc", timestamp_field="event_timestamp", created_timestamp_column="proctime", ) abc_push_source = PushSource( name="abc_push_source", batch_source=abc_source ) # ... push some data in
In offline_write_batch, construct a fully-qualified table name using the schema in the options, if present.
offline_write_batch
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
When writing to a Redshift push source, the table is written to under the correct schema.
Current Behavior
Even if
schema
is specified in the data source, data is pushed to a table in the default schema.You can trace this through the code:
Steps to reproduce
Specifications
Possible Solution
In
offline_write_batch
, construct a fully-qualified table name using the schema in the options, if present.The text was updated successfully, but these errors were encountered: