Skip to content

Commit fe03d96

Browse files
Merge pull request #280413 from seesharprun/cosmos-remove-html-comments
Cosmos DB | Remove HTML comments from articles (1/2)
2 parents d683dfa + 94ae994 commit fe03d96

File tree

5 files changed

+0
-22
lines changed

5 files changed

+0
-22
lines changed

articles/cosmos-db/nosql/manage-with-powershell.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -831,8 +831,6 @@ Remove-AzResourceLock `
831831
* [Create an Azure Cosmos DB container](how-to-create-container.md)
832832
* [Configure time-to-live in Azure Cosmos DB](how-to-time-to-live.md)
833833

834-
<!--Reference style links - using these makes the source content way more readable than using inline links-->
835-
836834
[powershell-install-configure]: /powershell/azure/
837835
[scaling-globally]: ../distribute-data-globally.md#EnableGlobalDistribution
838836
[distribute-data-globally]: ../distribute-data-globally.md

articles/cosmos-db/nosql/samples-java.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,6 @@ The [Collection CRUD Samples](https://github.com/Azure/azure-documentdb-java/blo
176176
| Exclude specified documents paths from the index | [IndexingPolicy.ExcludedPaths](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/indexmanagement/sync/SampleIndexManagement.java#L148-L151) |
177177
| Create a composite index | [IndexingPolicy.setCompositeIndexes](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/indexmanagement/sync/SampleIndexManagement.java#L167-L184) <br> CompositePath |
178178
| Create a geospatial index | [IndexingPolicy.setSpatialIndexes](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/indexmanagement/sync/SampleIndexManagement.java#L153-L165) <br> SpatialSpec <br> SpatialType |
179-
<!-- | Exclude a document from the index | ExcludedIndex<br>IndexingPolicy | -->
180-
<!-- | Use Lazy Indexing | IndexingPolicy.IndexingMode | -->
181-
<!-- | Force a range scan operation on a hash indexed path | FeedOptions.EnableScanInQuery | -->
182-
<!-- | Use range indexes on Strings | IndexingPolicy.IncludedPaths<br>RangeIndex | -->
183-
<!-- | Perform an index transform | - | -->
184-
185179

186180
For more information about indexing, see [Azure Cosmos DB indexing policies](../index-policy.md).
187181

@@ -204,7 +198,6 @@ The Query Samples files for [sync](https://github.com/Azure-Samples/azure-cosmos
204198
| Query with parameterized SQL using SqlQuerySpec | [CosmosContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/queries/sync/QueriesQuickstart.java#L387-L416) <br> [CosmosAsyncContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/0ead4ca33dac72c223285e1db866c9dc06f5fb47/src/main/java/com/azure/cosmos/examples/queries/async/QueriesQuickstartAsync.java#L426-L455)|
205199
| Query with explicit paging | [CosmosContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/queries/sync/QueriesQuickstart.java#L211-L261) <br> [CosmosAsyncContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/0ead4ca33dac72c223285e1db866c9dc06f5fb47/src/main/java/com/azure/cosmos/examples/queries/async/QueriesQuickstartAsync.java#L250-L300)|
206200
| Query partitioned collections in parallel | [CosmosContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/queries/sync/QueriesQuickstart.java#L263-L284) <br> [CosmosAsyncContainer.queryItems](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/0ead4ca33dac72c223285e1db866c9dc06f5fb47/src/main/java/com/azure/cosmos/examples/queries/async/QueriesQuickstartAsync.java#L302-L323)|
207-
<!-- | Query with ORDER BY for partitioned collections | CosmosContainer.queryItems <br> CosmosAsyncContainer.queryItems | -->
208201

209202
## Change feed examples
210203
The [Change Feed Processor Sample](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/changefeed/SampleChangeFeedProcessor.java) file shows how to do the following tasks. To learn about change feed in Azure Cosmos DB before you run the following samples, see [Read Azure Cosmos DB change feed](read-change-feed.md) and [Change feed processor](/azure/cosmos-db/sql/change-feed-processor?tabs=java).
@@ -213,7 +206,6 @@ The [Change Feed Processor Sample](https://github.com/Azure-Samples/azure-cosmos
213206
| --- | --- |
214207
| Basic change feed functionality | [ChangeFeedProcessor.changeFeedProcessorBuilder](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/changefeed/SampleChangeFeedProcessor.java#L141-L172) |
215208
| Read change feed from the beginning | [ChangeFeedProcessorOptions.setStartFromBeginning()](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/0ead4ca33dac72c223285e1db866c9dc06f5fb47/src/main/java/com/azure/cosmos/examples/changefeed/SampleChangeFeedProcessor.java#L65) |
216-
<!-- | Read change feed from a specific time | ChangeFeedProcessor.changeFeedProcessorBuilder | -->
217209

218210
## Server-side programming examples
219211

@@ -225,15 +217,6 @@ The [Stored Procedure Sample](https://github.com/Azure-Samples/azure-cosmos-java
225217
| Execute a stored procedure | [CosmosStoredProcedure.execute](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/storedprocedure/sync/SampleStoredProcedure.java#L213-L227) |
226218
| Delete a stored procedure | [CosmosStoredProcedure.delete](https://github.com/Azure-Samples/azure-cosmos-java-sql-api-samples/blob/main/src/main/java/com/azure/cosmos/examples/storedprocedure/sync/SampleStoredProcedure.java#L254-L264) |
227219

228-
<!-- ## User management examples
229-
The User Management Sample file shows how to do the following tasks:
230-
231-
| Task | API reference |
232-
| --- | --- |
233-
| Create a user | - |
234-
| Set permissions on a collection or document | - |
235-
| Get a list of a user's permissions |- | -->
236-
237220
## Next steps
238221

239222
Trying to do capacity planning for a migration to Azure Cosmos DB? You can use information about your existing database cluster for capacity planning.

articles/cosmos-db/nosql/troubleshoot-dotnet-sdk.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ If you encounter the following error: `Unable to load DLL 'Microsoft.Azure.Cosmo
9393
* Learn about Performance guidelines for the [.NET SDK](performance-tips-dotnet-sdk-v3.md)
9494
* Learn about the best practices for the [.NET SDK](best-practice-dotnet.md)
9595

96-
<!--Anchors-->
9796
[Common issues and workarounds]: #common-issues-workarounds
9897
[Azure SNAT (PAT) port exhaustion]: #snat
9998
[Production check list]: #production-check-list

articles/cosmos-db/nosql/troubleshoot-java-async-sdk.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ The number of connections to the Azure Cosmos DB endpoint in the `ESTABLISHED` s
278278

279279
Many connections to the Azure Cosmos DB endpoint might be in the `CLOSE_WAIT` state. There might be more than 1,000. A number that high indicates that connections are established and torn down quickly. This situation potentially causes problems. For more information, see the [Common issues and workarounds] section.
280280

281-
<!--Anchors-->
282281
[Common issues and workarounds]: #common-issues-workarounds
283282
[Enable client SDK logging]: #enable-client-sice-logging
284283
[Connection limit on a host machine]: #connection-limit-on-host

articles/cosmos-db/nosql/troubleshoot-java-sdk-v4.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,6 @@ The [query metrics](query-metrics.md) will help determine where the query is spe
500500
* Learn about Performance guidelines for the [Java SDK v4](performance-tips-java-sdk-v4.md)
501501
* Learn about the best practices for the [Java SDK v4](best-practice-java.md)
502502

503-
<!--Anchors-->
504503
[Common issues and workarounds]: #common-issues-workarounds
505504
[Enable client SDK logging]: #enable-client-sice-logging
506505
[Connection limit on a host machine]: #connection-limit-on-host

0 commit comments

Comments
 (0)