A data analyst encounters the above error log when trying to connect to a database. The analyst needs to explain the issue to the database administrator. Which of the following correctly describes the problem?
Exhibit
Refer to the exhibit. ``` [2024-03-15 14:23:45] ERROR: Connection pool exhausted. Retry attempt 1... [2024-03-15 14:23:46] ERROR: Connection pool exhausted. Retry attempt 2... [2024-03-15 14:23:47] ERROR: Connection pool exhausted. Retry attempt 3... [2024-03-15 14:23:48] ERROR: Connection pool exhausted. Max retries exceeded. ```
Trap 1: The database table is corrupted.
The error does not indicate data corruption.
Trap 2: The database server is out of disk space.
No mention of disk space issues.
Trap 3: The database authentication credentials are invalid.
The error does not mention authentication failure.
- A
The database connection pool has reached its maximum limit.
The log explicitly says 'Connection pool exhausted'.
- B
The database table is corrupted.
Why wrong: The error does not indicate data corruption.
- C
The database server is out of disk space.
Why wrong: No mention of disk space issues.
- D
The database authentication credentials are invalid.
Why wrong: The error does not mention authentication failure.