Which TWO of the following are valid ways to interact with the Consul KV store?
Trap 1: Direct file system access to KV data
Directly accessing the Raft log files is unsupported.
Trap 2: SQL queries
Consul does not support SQL.
Trap 3: Consul GUI (Web UI)
The Web UI allows viewing, but is not considered a primary programmatic interface for complex operations.
- A
Direct file system access to KV data
Why wrong: Directly accessing the Raft log files is unsupported.
- B
SQL queries
Why wrong: Consul does not support SQL.
- C
Consul HTTP API
The API is the primary way to interact.
- D
Consul CLI
The CLI is the primary way to interact.
- E
Consul GUI (Web UI)
Why wrong: The Web UI allows viewing, but is not considered a primary programmatic interface for complex operations.