From b240f849e09c919873b052538bd0792ec26cbd88 Mon Sep 17 00:00:00 2001 From: Sean Feldman Date: Wed, 25 Sep 2019 14:34:19 -0600 Subject: [PATCH] Removed unused variable (#849) --- Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs b/Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs index 2d398f02b..89c4b3bf8 100644 --- a/Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs +++ b/Microsoft.Azure.Cosmos.Samples/Usage/BulkSupport/Program.cs @@ -174,10 +174,9 @@ // We create a partitioned collection here which needs a partition key. Partitioned collections // can be created with very high values of provisioned throughput (up to Throughput = 250,000) // and used to store up to 250 GB of data. - ContainerProperties containerProperties = new ContainerProperties(containerId, partitionKeyPath: "/pk"); - Console.WriteLine("The demo will create a 20000 RU/s container, press any key to continue."); Console.ReadKey(); + // Create with a throughput of 20000 RU/s - this demo is about throughput so it needs a higher degree of RU/s to show volume // Indexing Policy to exclude all attributes to maximize RU/s usage await database.DefineContainer(containerId, "/pk")