You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the bug?
When CREATE MATERIALIZED VIEW statement ends with a semicolon, no streaming job is created on EMR-S. Instead, an interactive session handles the request.
How can one reproduce the bug?
Steps to reproduce the behavior:
1.
POST /_plugins/_async_query
{
"datasource": "my_glue",
"lang": "sql",
"query": "CREATE MATERIALIZED VIEW my_glue.default.mv AS SELECT 1 FROM my_glue.default.dummy WITH ( auto_refresh = true, checkpoint_location = 's3://test', watermark_delay = '1 Minute');"
}
See response
{
"queryId": "xxx",
"sessionId": "xxx"
}
Check EMR-S jobs: no streaming job is created
Check materialized view content: will not get auto refreshed
What is the expected behavior?
Response should not contain a sessionId. EMR-S should spawn streaming job. Materialized view content should get auto refreshed.
What is your host/environment?
OS: 2.13
The text was updated successfully, but these errors were encountered:
What is the bug?
When
CREATE MATERIALIZED VIEW
statement ends with a semicolon, no streaming job is created on EMR-S. Instead, an interactive session handles the request.How can one reproduce the bug?
Steps to reproduce the behavior:
1.
What is the expected behavior?
Response should not contain a sessionId. EMR-S should spawn streaming job. Materialized view content should get auto refreshed.
What is your host/environment?
The text was updated successfully, but these errors were encountered: