Question 98 of 179 from exam ACE: Associate Cloud Engineer

Question 98 of 179 from exam ACE: Associate Cloud Engineer

Question

Your customer has implemented a solution that uses Cloud Spanner and notices some read latency-related performance issues on one table.

This table is accessed only by their users using a primary key.

The table schema is shown below.

CREATE TABLE Persons (

person_id INT64 NOT NULL, // sequential number based on number of registration
account_creation_date DATE, // system date

birthdate DATE, // customer birthdate
firstname STRING (255), // first name
lastname STRING (255), // last name
profile picture BYTES (255) // profile picture

) PRIMARY KEY (person_id)

You want to resolve the issue.

What should you do?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

D.