Can customers opt out of Redshift's serverless compute engine?

0

In the recent Redshift announcement I read: "query compilations are now scaled to a serverless compute engine beyond the compute resources of the leader node of your cluster".

The queries can contain PII information in the text and having this information processed in what looks like a multi-tenant compiling environment might be an issue in some industries. I have had customers skipping even local logging of query logs to ensure such information can't get exposed.

Can customers opt out of Redshift's serverless compute engine?

asked 4 years ago233 views
1 Answer
0
Accepted Answer

The query parsing, the optimization and the plan creation (the parts that potentially use the PII data in the query text and/or in the statistic) are carried over inside the leader node. Only the C++ code created at the end of the optimization (that doesn't contain any PII data) is sent to the serverless infrastructure to be compiled.

This means that there is no reason to need an opt-out option.

answered 4 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions