NoSQL/Azure Cosmos DB

[Azure Cosmos DB] components of Azure Cosmos DB SQL API?

개발자_옹이양 2022. 4. 29. 20:16

코스모스의 구성요소가 무엇인가?

 

What are the components of Azure Cosmos DB SQL API?

Accounts

Accounts are the fundamental units of distribution and high availability. At the account level, you can configure the region[s] for your data in Azure Cosmos DB SQL API. Accounts also contain the globally unique DNS name used for API requests. You can also set the default consistency level for requests at the account. You can manage or create accounts using the Azure portal, Azure Resource Manager templates, the Azure CLI, or Azure PowerShell.

 

계정 은 배포 및 고가용성의 기본 단위입니다. 계정 수준에서 Azure Cosmos DB SQL API의 데이터에 대한 지역을 구성할 수 있습니다. 계정에는 API 요청에 사용되는 전역적으로 고유한 DNS 이름도 포함됩니다. 계정에서 요청에 대한 기본 일관성 수준을 설정할 수도 있습니다. Azure Portal, Azure Resource Manager 템플릿, Azure CLI 또는 Azure PowerShell을 사용하여 계정을 관리하거나 만들 수 있습니다.

 

Databases

Each account can contain one or more Databases. A database is a logical unit of management for containers in Azure Cosmos DB SQL API.

 

각 계정에는 하나 이상의 데이터베이스 가 포함될 수 있습니다 . 데이터베이스는 Azure Cosmos DB SQL API의 컨테이너에 대한 논리적 관리 단위입니다.

 

Containers

Containers are the fundamental unit of scalability in Azure Cosmos DB SQL API. With Azure Cosmos DB, you provision throughput at the container level. You can also optionally configure an indexing policy or a default time-to-live value at the container level. Azure Cosmos DB SQL API will automatically and transparently partition the data in a container.

 

컨테이너 는 Azure Cosmos DB SQL API 확장성의 기본 단위입니다. Azure Cosmos DB를 사용하여 컨테이너 수준에서 처리량을 프로비저닝합니다. 또한 컨테이너 수준에서 인덱싱 정책 또는 기본 TTL(Time-to-Live) 값을 선택적으로 구성할 수도 있습니다. Azure Cosmos DB SQL API는 컨테이너의 데이터를 자동으로 투명하게 분할합니다.

 

Items

The SQL API for Azure Cosmos DB stores individual documents in JSON format as *items* within the container. Azure Cosmos DB SQL API natively supports JSON files and can provide fast and predictable performance because write operations on JSON documents are atomic.

 

Azure Cosmos DB용 SQL API는 JSON 형식의 개별 문서를 컨테이너 내의 *항목 으로 저장합니다.* Azure Cosmos DB SQL API는 기본적으로 JSON 파일을 지원하며 JSON 문서에 대한 쓰기 작업이 원자적이기 때문에 빠르고 예측 가능한 성능을 제공할 수 있습니다.

 

 

 

 

자료&내용 출처

 

'NoSQL > Azure Cosmos DB' 카테고리의 다른 글

[CosmosDB] SDK  (0) 2022.05.02
[Cosmos DB] Compare autoscale vs. standard  (0) 2022.05.02