Skip to content

Commit 3c67190

Browse files
committed
metadata and absolute links
1 parent 2fd6c74 commit 3c67190

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

docs-ref-services/preview/cosmos-readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,32 +105,32 @@ CosmosClient cosmosClient = new CosmosClientBuilder()
105105

106106
Azure Cosmos DB Java SDK provides client-side logical representation to access the Azure Cosmos DB SQL API.
107107
A Cosmos DB account contains zero or more databases, a database (DB) contains zero or more containers, and a container contains zero or more items.
108-
You may read more about databases, containers and items [here](https://docs.microsoft.com/azure/cosmos-db/databases-containers-items).
108+
You may read more about databases, containers and items [here](/azure/cosmos-db/databases-containers-items).
109109
A few important properties defined at the level of the container, among them are provisioned throughput and partition key.
110110

111111
### Global Distribution
112112
- Azure Cosmos DB is a globally distributed database service that's designed to provide low latency, elastic scalability of throughput, well-defined semantics for data consistency, and high availability.
113113
In short, if your application needs guaranteed fast response time anywhere in the world, if it's required to be always online, and needs unlimited and elastic scalability of throughput and storage, you should build your application on Azure Cosmos DB.
114-
You may read more about global distribution [here](https://docs.microsoft.com/azure/cosmos-db/distribute-data-globally).
114+
You may read more about global distribution [here](/azure/cosmos-db/distribute-data-globally).
115115

116116
### Throughput Provisioning
117117
- Azure Cosmos DB allows you to set provisioned throughput on your databases and containers.
118118
There are two types of provisioned throughput, standard (manual) or autoscale. Provisioned throughput can be selected at per-container granularity or per-database granularity, however container-level throughput specification is typically preferred.
119-
You may read more about throughput provisioning [here](https://docs.microsoft.com/azure/cosmos-db/set-throughput).
119+
You may read more about throughput provisioning [here](/azure/cosmos-db/set-throughput).
120120

121121
### Request Units (RUs)
122122
- Azure Cosmos DB supports many APIs, such as SQL, MongoDB, Cassandra, Gremlin, and Table.
123123
Each API has its own set of database operations. These operations range from simple point reads and writes to complex queries.
124124
Each database operation consumes system resources based on the complexity of the operation. The cost of all database operations is normalized by Azure Cosmos DB and is expressed by Request Units (or RUs, for short).
125125
You can think of RUs per second as the currency for throughput. RUs per second is a rate-based currency. It abstracts the system resources such as CPU, IOPS, and memory that are required to perform the database operations supported by Azure Cosmos DB.
126-
You may read more about request units [here](https://docs.microsoft.com/azure/cosmos-db/request-units).
126+
You may read more about request units [here](/azure/cosmos-db/request-units).
127127

128128
### Partitioning
129129
- As items are inserted into a Cosmos DB container, the database grows horizontally by adding more storage and compute to handle requests.
130130
Storage and compute capacity are added in discrete units known as partitions, and you must choose one field in your documents to be the partition key which maps each document to a partition.
131131
The way partitions are managed is that each partition is assigned a roughly equal slice out of the range of partition key values; therefore you are advised to choose a partition key which is relatively random or evenly-distributed.
132132
Otherwise, some partitions will see substantially more requests (hot partition) while other partitions see substantially fewer requests (cold partition), and this is to be avoided.
133-
You may learn more about partitioning [here](https://docs.microsoft.com/azure/cosmos-db/partitioning-overview).
133+
You may learn more about partitioning [here](/azure/cosmos-db/partitioning-overview).
134134

135135
## Examples
136136

docs-ref-services/preview/data-appconfiguration-readme.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
title: Azure App Configuration client library for Java
33
keywords: Azure, java, SDK, API, azure-data-appconfiguration, appconfiguration
44
author: ramya-rao-a
5-
ms.author: ramyar
5+
ms.author: shafang
66
ms.date: 04/09/2021
77
ms.topic: reference
8-
ms.prod: azure
9-
ms.technology: azure
8+
9+
1010
ms.devlang: java
11-
ms.service: appconfiguration
11+
ms.service: azure-app-configuration
1212
---
1313

1414
# Azure App Configuration client library for Java - Version 1.2.0-beta.1
@@ -19,8 +19,11 @@ Modern programs, especially programs running in a cloud, generally have many com
1919

2020
Use the client library for App Configuration to create and manage application configuration settings.
2121

22-
[Source code][source_code] | [Package (Maven)][package] | [API reference documentation][api_documentation]
23-
| [Product documentation][azconfig_docs] | [Samples][samples]
22+
- [Source code][source_code]
23+
- [Package (Maven)][package]
24+
- [API reference documentation][api_documentation]
25+
- [Product documentation][azconfig_docs]
26+
- [Samples][samples]
2427

2528
## Getting started
2629

@@ -418,18 +421,18 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
418421
<!-- LINKS -->
419422
[add_headers_from_context_policy]: https://github.com/Azure/azure-sdk-for-java/blob/azure-data-appconfiguration_1.2.0-beta.1/sdk/core/azure-core/src/main/java/com/azure/core/http/policy/AddHeadersFromContextPolicy.java
420423
[api_documentation]: https://aka.ms/java-docs
421-
[app_config_store]: https://docs.microsoft.com/azure/azure-app-configuration/quickstart-dotnet-core-app#create-an-app-configuration-store
422-
[app_config_role]: https://docs.microsoft.com/azure/azure-app-configuration/rest-api-authorization-azure-ad#roles
423-
[azconfig_docs]: https://docs.microsoft.com/azure/azure-app-configuration
424-
[azure_cli]: https://docs.microsoft.com/cli/azure
424+
[app_config_store]: /azure/azure-app-configuration/quickstart-dotnet-core-app#create-an-app-configuration-store
425+
[app_config_role]: /azure/azure-app-configuration/rest-api-authorization-azure-ad#roles
426+
[azconfig_docs]: /azure/azure-app-configuration
427+
[azure_cli]: /cli/azure
425428
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/tree/azure-data-appconfiguration_1.2.0-beta.1/sdk/identity/azure-identity
426429
[azure_subscription]: https://azure.microsoft.com/free
427430
[cla]: https://cla.microsoft.com
428431
[coc]: https://opensource.microsoft.com/codeofconduct/
429432
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
430433
[coc_contact]: mailto:[email protected]
431434
[default_cred_ref]: https://azuresdkdocs.blob.core.windows.net/$web/java/azure-identity/1.0.1/com/azure/identity/DefaultAzureCredential.html
432-
[jdk_link]: https://docs.microsoft.com/java/azure/jdk/?view=azure-java-stable
435+
[jdk_link]: /java/azure/jdk/?view=azure-java-stable
433436
[maven]: https://maven.apache.org/
434437
[package]: https://search.maven.org/artifact/com.azure/azure-data-appconfiguration
435438
[performance_tuning]: https://github.com/Azure/azure-sdk-for-java/wiki/Performance-Tuning

0 commit comments

Comments
 (0)