-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[doc] Deployment documentation migration - definitions #1073
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -4,13 +4,52 @@ | |
|
||
See [introduction](../build/pooling.md#introduction) | ||
|
||
## Architecture | ||
## Definitions and terminology notes | ||
|
||
See [architecture](../build/deploy/README.md#architecture) | ||
This section defines some concepts and related references used in this documentation. | ||
|
||
### DSS Region | ||
|
||
A DSS Region is a region in which a single, unified airspace representation is | ||
presented by one or more interoperable DSS instances, each instance typically | ||
operated by a separate organization. A specific environment (for example, | ||
"production" or "staging") in a particular DSS Region is called a "pool". | ||
|
||
### DSS Pool | ||
|
||
A DSS Pool is a set of interoperable and interconnected DSS instances in a specific | ||
DSS Region. Each instance is typically operated by a separate organization. | ||
|
||
### DSS instance | ||
|
||
A DSS instance is a single logical replica in a DSS pool hosted by a single | ||
organization. | ||
|
||
### Terminology notes | ||
### Pooling | ||
|
||
See [teminology notes](../build/pooling.md#terminology-notes). | ||
The process required by a DSS Instance to join a DSS Pool is referred to "Pooling" | ||
in this documentation. | ||
|
||
### CRDB cluster | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
CockroachDB (CRDB) establishes a distributed data store called a "cluster". | ||
This cluster stores the DSS Airspace Representation (DAR) in multiple SQL | ||
databases within that cluster. This cluster is composed of many CRDB nodes, | ||
potentially hosted by multiple organizations. | ||
"CRDB cluster" is used to refer to this concept in this documentation. | ||
|
||
### Kubernetes cluster | ||
|
||
Kubernetes manages a set of services in a "cluster". This is an entirely | ||
different thing from the CRDB data store, and this type of cluster is what the | ||
deployment instructions refer to. A Kubernetes cluster contains one or more | ||
node pools: collections of machines available to run jobs. This node pool is an | ||
entirely different thing from a DSS pool. | ||
Comment on lines
+43
to
+47
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are those clarifications really needed? |
||
"Kubernetes cluster" is used to refer to this concept in this documentation. | ||
|
||
## Architecture | ||
|
||
See [architecture](../build/deploy/README.md#architecture) | ||
|
||
## Pooling | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this 'single logical replica' be on several CRDB nodes? I.e. can a DSS instance host several CRDB nodes?