This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
forked from cortexproject/cortex
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documented blocks storage index cache backends
Signed-off-by: Marco Pracucci <[email protected]>
- Loading branch information
Showing
4 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: "DNS service discovery" | ||
linkTitle: "DNS service discovery" | ||
weight: 2 | ||
slug: dns-service-discovery | ||
--- | ||
|
||
Cortex supports a DNS service discovery to discover addresses of backend servers to connect to (ie. caching servers). This service discovery is not widely supported in Cortex yet. The clients supporting it are: | ||
|
||
- [Blocks storage's memcached index cache](blocks-storage.md#memcached-index-cache) | ||
|
||
## Supported discovery modes | ||
|
||
The DNS service discovery supports different discovery modes. A discovery mode is selected adding a specific prefix to the address. The supported prefixes are: | ||
|
||
- **`dns+`**<br /> | ||
The domain name after the prefix is looked up as an A/AAAA query. For example: `dns+memcached.local:11211` | ||
- **`dnssrv+`**<br /> | ||
The domain name after the prefix is looked up as a SRV query, and then each SRV record is resolved as an A/AAAA record. For example: `dnssrv+memcached.namespace.svc.cluster.local` | ||
- **`dnssrvnoa+`**<br /> | ||
The domain name after the prefix is looked up as a SRV query, with no A/AAAA lookup made after that. For example: `dnssrvnoa+memcached.namespace.svc.cluster.local` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
title: "Query Auditor (tool)" | ||
linkTitle: "Query Auditor (tool)" | ||
weight: 2 | ||
weight: 3 | ||
slug: query-auditor | ||
--- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
title: "Query Tee (service)" | ||
linkTitle: "Query Tee (service)" | ||
weight: 3 | ||
weight: 4 | ||
slug: query-tee | ||
--- | ||
|
||
|