You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace Endpoints with Regional Endpoints (Azure#39390)
* add new policy, add logic to use policy
* added small test file I was using
* initial regional endpoint work
* groundwork
* re-add AzureError logic, refactor, fix tests
* Update _retry_utility.py
* Updated location_cache with new design
* Fixed key error with most_preferred_location
* Update test_cosmos_http_logging_policy.py
* Update _retry_utility.py
* Added logic to refresh cache on previous endpoint usage
* Added business logic update the regional endpoint based on success or failures
* implementation
* Update _retry_utility_async.py
* fix some tests
* changelog, versions, fixes
* fixes
* fix some tests
* remove fake logic, count fix
* fix some tests
* Update _service_request_retry_policy.py
* Update _retry_utility_async.py
* retry utilities fixing
* Update _retry_utility.py
* additional enhancements
* Update setup.py
* Update _retry_utility_async.py
* add tests, remove previous retry logic for ServiceRequestExceptions
* clean up with finally
* tests
* retry utilities
* disable tests
* add logging to policies
* GetDatabaseAccount Fix
* Update _base.py
* retry utilities fixes
* Update _retry_utility.py
* retry utulities part 34
* Update _service_request_retry_policy.py
* remove extra logs
* policy updates
* Update _service_response_retry_policy.py
* Update _service_response_retry_policy.py
* policies updates and update operation types
* trying out fixes
* Update sdk/cosmos/azure-cosmos/CHANGELOG.md
Co-authored-by: Abhijeet Mohanty <[email protected]>
* Update sdk/cosmos/azure-cosmos/CHANGELOG.md
Co-authored-by: Abhijeet Mohanty <[email protected]>
* Skipped proxy test for debugging
* annotation fix
* Fixed some tests cases
* test fixes
* Update test_service_retry_policies_async.py
* Fixed some mocking behavior
* fixed pylint issues
* Added aiohttp minimum dependency
* Updated changelog and setup.py
* Updated changelog
* Add changelog and fix tests.
* Fix tests
* bootstrapping with global endpoint as previous for writes
* Add headers and cleanup
* cleanup and retry all service request headers
* Don't retry on a none previous
* Updated the business logic with current and previous, fixed database account refresh and some retry policies
* fix client id
* Reacting to comments
* Added print statements and fixed some retry logic
* Revert getDatabase in mark endpoint
* Fixed some pylint and changelog issues
* Fixed version
* fix bug with type check, update tests
* Update test_service_retry_policies_async.py
* sync tests updates
* Reacting to comments and fixing service request retry policy
* Code review comments and pylint issues
* Fixed tests and pylint
* more sync mock tests - missing async copies
* Fixed min aiohttp requirements
* Update _retry_utility_async.py
* Change to check operation type in operations
* push initial GEM mock test
* Update test_service_retry_policies.py
* Fixed extra retries
* sync tests
* Update test_service_retry_policies_async.py
* Fixed extra retries and relevant tests
* Only delay retry by one second
* async tests - need to split up inheritance ones since endpoint unavailable stops extra retries
* Change retry strategy
* add sub-class errors tests
* change old tests, refactoring, fix mocking bleed
* Fix a test
* clear last routed location pythonic
* Removed aiohttp dependency
* catch import errors
* Skipped global endpoint manager test for debugging
* Fixed tests
* Removed skips
* fix live tests and print statements for debugging
* cleanup of few tests
* updated globaldb mock
* Moved some of the high offer throughput tests to live tests
* Fixed global endpoint retry async test
* Tried fixing global endpoint retry async test
* no swaps on success test
* fix import
* Tried fixing global endpoint retry async test
* Added separate split live tests
* Added live platform matrix
* some test fixes
* Fixed live test pipeline
* Moved test resource id to cosmosLong
* Updated live tests
* Running live tests with proper flag
* testing logging experiments
* fix tests
* honor testmark argument through a safe environment variable, versus accessing the value directly
* more test fixes
* remove accidental log files
* Fixed issues with swapping and retry policies
* Fixed issues with swapping and retry policies
* Marking endpoint as down fix
* more test fixes
* Remove print statements
* Fixed some minor issues with emulator tests
* split change feed tests
* Fixed emulator tests
* updated changelog
* Fixed emulator tests again
* Fixed emulator tests and event loop
* vector/fts query tests
* Fix session token live tests
* hybrid search query fixes
* Fixed live test name
* fallback to regional
* fix ci tests
* Update conftest.py
* Database accounts call will timeout in 5 seconds
* Change timeouts and update docs
* call updates to endpoint policy and location cache
* Health check for endpoitns
* database account retry policy
* Fix parameter error
* Retry on cosmos error fix
* Retry on service request error fix
* None checks for request in retry utilities
* lowercase constructed regional endpoint
* fix global endpoint as unhealthy
* fix parsing test
* Added logic for swapping on health check failed
* Fixed log statement
* fix pylint, docs, and remove print statements
* fix pylint
* fix some tests
* Prepared for release
---------
Co-authored-by: Simon Moreno <[email protected]>
Co-authored-by: Kushagra Thapar <[email protected]>
Co-authored-by: Abhijeet Mohanty <[email protected]>
Co-authored-by: Scott Beddall <[email protected]>
Copy file name to clipboardexpand all lines: sdk/cosmos/azure-cosmos/CHANGELOG.md
+17
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,22 @@
1
1
## Release History
2
2
3
+
### 4.9.1b3 (2025-02-04)
4
+
5
+
#### Features Added
6
+
* Improved retry logic by retrying alternative endpoint for writes within a region before performing a cross region retry. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
7
+
* Added endpoint health check logic during database account calls. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
8
+
9
+
#### Bugs Fixed
10
+
* Fixed unnecessary retries on the wrong region for timout retry policy. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
11
+
* All client connection errors from aiohttp will be retried. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
12
+
13
+
#### Other Changes
14
+
* Changed defaults for retry delays. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
15
+
* Changed default connection timeout to be 5 seconds. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
16
+
* Changed default read timeout to be 65 seconds. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
17
+
* On database account calls send a client id header for load balancing. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
18
+
* Removed aiohttp dependency. See [PR 39390](https://github.com/Azure/azure-sdk-for-python/pull/39390)
0 commit comments