Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
73c9f04
Enabling query metrics by default
FabianMeiswinkel Aug 24, 2020
d63712b
Adding null-value handling to quey metric validation
FabianMeiswinkel Aug 24, 2020
ea53fbc
Fix for NPE in GatewayAddressCache
FabianMeiswinkel Aug 25, 2020
0bf2117
Adding comments explaining default value of QueryMetricEnabled
FabianMeiswinkel Aug 25, 2020
3217979
Adding support for readAllItems of a logical partition
FabianMeiswinkel Aug 25, 2020
982cc17
Adding readAllItems for sync CosmosContainer as well
FabianMeiswinkel Aug 26, 2020
ef1242b
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-java …
FabianMeiswinkel Aug 26, 2020
3514516
Adding basic unit test for ReadAllItems(PK)
FabianMeiswinkel Aug 26, 2020
d50091d
Adding benchmark for ReadAllItems
FabianMeiswinkel Aug 26, 2020
37c1c8a
Fixing cosmos-benchmark version as well
FabianMeiswinkel Aug 26, 2020
a31c1ba
Fixing changelog for cosmos-encryption
FabianMeiswinkel Aug 26, 2020
1b40057
Fixing versions
FabianMeiswinkel Aug 26, 2020
dbc349f
Fixing current version of azure-cosmos
FabianMeiswinkel Aug 26, 2020
b906155
Reverting azure-cosmos version bump
FabianMeiswinkel Aug 26, 2020
80b91ca
Bumping azure-cosmos version
FabianMeiswinkel Aug 26, 2020
8355264
Reverting unnecessary changelog and readme changes
FabianMeiswinkel Aug 26, 2020
977db82
Fixing azure-cosmos-benchmark to use dynamic number of precreated doc…
FabianMeiswinkel Aug 26, 2020
546e1b8
Adding benchmark use case description
FabianMeiswinkel Aug 26, 2020
a483b4e
Fixing wrong StringUtils dependency
FabianMeiswinkel Aug 26, 2020
10bab43
Remove unnecessary constants
FabianMeiswinkel Aug 26, 2020
3ae465a
Making readAllDocuments partition split safe
FabianMeiswinkel Aug 26, 2020
628c150
Moving new test in CosmosItemTest to ObjectNode instead of InternalOb…
FabianMeiswinkel Aug 26, 2020
dcba20b
Adding comment that ItemOperations readMany APIs are deprecated
FabianMeiswinkel Aug 26, 2020
22ac79a
Fixing changelog and new benchmark to be able to cut 4.4.0-beta.1 releas
FabianMeiswinkel Aug 27, 2020
9d8abfe
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-java …
FabianMeiswinkel Aug 27, 2020
e217613
Fixing merge conflicts
FabianMeiswinkel Aug 27, 2020
1f4abdb
Fixing merge conflict
FabianMeiswinkel Aug 27, 2020
74f9fb3
Iterating on changelog
FabianMeiswinkel Aug 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ private boolean latencyAwareOperations(Configuration.Operation operation) {
case QueryAggregateTopOrderby:
case QueryTopOrderby:
case Mixed:
case ReadAllItemsOfLogicalPartition:
return true;
default:
return false;
Expand Down Expand Up @@ -364,4 +365,4 @@ protected Mono sparsityMono(long i) {
}
else return null;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ private static void asyncBenchmark(Configuration cfg) throws Exception {
case QueryTopOrderby:
case QueryAggregateTopOrderby:
case QueryInClauseParallel:
case ReadAllItemsOfLogicalPartition:
benchmark = new AsyncQueryBenchmark(cfg);
break;

Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/azure-cosmos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 4.4.0-beta.1 (Unreleased)
## 4.4.0-beta.1 (2020-08-27)
* Added new API to efficiently load many documents (via list of pk/id pairs or all documents for a set ok pk values)
* Enabled query metrics by default
* Fixed NPE in GatewayAddressCache
Expand Down