Skip to content

Commit 18457a2

Browse files
Merge pull request #252614 from stevemunk/temp-banner-understanding-azure-maps-transactions-
Data service deprecation: about-azure-maps, qps-rate-limits, understanding-transactions
2 parents 7fa45a4 + 0b7f062 commit 18457a2

File tree

4 files changed

+36
-11
lines changed

4 files changed

+36
-11
lines changed

articles/azure-maps/about-azure-maps.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,15 @@ Use the Azure Maps Android SDK to create mobile mapping applications.
5151

5252
Azure Maps consists of the following services that can provide geographic context to your Azure applications.
5353

54-
### Data service
54+
### Data registry service
5555

56-
Data is imperative for maps. Use the Data service to upload and store geospatial data for use with spatial operations or image composition. By bringing customer data closer to the Azure Maps service, you reduce latency and increase productivity. For more information on this service, see [Data service].
56+
Data is imperative for maps. Use the Data registry service to access geospatial data, used with spatial operations or image composition, previously uploaded to your [Azure Storage]. By bringing customer data closer to the Azure Maps service, you reduce latency and increase productivity. For more information on this service, see [Data registry service].
57+
58+
> [!NOTE]
59+
>
60+
> **Azure Maps Data service retirement**
61+
>
62+
> The Azure Maps Data service (both [v1] and [v2]) is now deprecated and will be retired on 9/16/24. To avoid service disruptions, all calls to the Data service will need to be updated to use the Azure Maps [Data Registry service] by 9/16/24. For more information, see [How to create data registry].
5763
5864
### Geolocation service
5965

@@ -216,12 +222,17 @@ Stay up to date on Azure Maps:
216222
[Azure Maps blog]
217223

218224
<!--------- learn.microsoft.com links --------------->
225+
[Azure Storage]: ../storage/common/storage-introduction.md
219226
[Get started with Azure Maps Power BI visual]: power-bi-visual-get-started.md
220227
[How to use the Get Map Attribution API]: how-to-show-attribution.md
221228
[Quickstart: Create a web app]: quick-demo-map-app.md
222229
[What is Azure Maps Creator?]: about-creator.md
230+
[v1]: /rest/api/maps/data
231+
[v2]: /rest/api/maps/data-v2
232+
[Data Registry service]: /rest/api/maps/data-registry
233+
[How to create data registry]: how-to-create-data-registries.md
223234
<!--------- REST API Links --------------->
224-
[Data service]: /rest/api/maps/data-v2
235+
[Data registry service]: /rest/api/maps/data-registry
225236
[Geolocation service]: /rest/api/maps/geolocation
226237
[Get Map Tile]: /rest/api/maps/render-v2/get-map-tile
227238
[Get Weather along route API]: /rest/api/maps/weather/getweatheralongroute

articles/azure-maps/azure-maps-qps-rate-limits.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ The following list shows the QPS usage limits for each Azure Maps service by Pri
2727
| Copyright service | 10 | 10 | 10 |
2828
| Creator - Alias, TilesetDetails | 10 | Not Available | Not Available |
2929
| Creator - Conversion, Dataset, Feature State, WFS | 50 | Not Available | Not Available |
30-
| Data service | 50 | 50 | Not Available |
30+
| Data service (Deprecated<sup>1</sup>) | 50 | 50 | Not Available |
31+
| Data registry service | 50 | 50 | Not Available |
3132
| Geolocation service | 50 | 50 | 50 |
3233
| Render service - Traffic tiles and Static maps | 50 | 50 | 50 |
3334
| Render service - Road tiles | 500 | 500 | 50 |
@@ -43,7 +44,13 @@ The following list shows the QPS usage limits for each Azure Maps service by Pri
4344
| Traffic service | 50 | 50 | 50 |
4445
| Weather service | 50 | 50 | 50 |
4546

47+
<sup>1</sup> The Azure Maps Data service (both [v1] and [v2]) is now deprecated and will be retired on 9/16/24. To avoid service disruptions, all calls to the Data service will need to be updated to use the Azure Maps [Data Registry service] by 9/16/24. For more information, see [How to create data registry].
48+
4649
When QPS limits are reached, an HTTP 429 error is returned. If you're using the Gen 2 or Gen 1 S1 pricing tiers, you can create an Azure Maps *Technical* Support Request in the [Azure portal] to increase a specific QPS limit if needed. QPS limits for the Gen 1 S0 pricing tier can't be increased.
4750

4851
[Azure portal]: https://portal.azure.com/
4952
[Manage the pricing tier of your Azure Maps account]: how-to-manage-pricing-tier.md
53+
[v1]: /rest/api/maps/data
54+
[v2]: /rest/api/maps/data-v2
55+
[Data Registry service]: /rest/api/maps/data-registry
56+
[How to create data registry]: how-to-create-data-registries.md

articles/azure-maps/tutorial-ev-routing.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In this tutorial, you will:
3333

3434
* An [Azure Maps account]
3535
* A [subscription key]
36-
- An [Azure storage account]
36+
* An [Azure storage account]
3737

3838
> [!NOTE]
3939
> For more information on authentication in Azure Maps, see [manage authentication in Azure Maps].
@@ -168,6 +168,7 @@ for loc in range(len(searchPolyResponse["results"])):
168168

169169
It's helpful to visualize the charging stations and the boundary for the maximum reachable range of the electric vehicle on a map. Follow the steps outlined in the [How to create data registry] article to upload the boundary data and charging stations data as geojson objects to your [Azure storage account] then register them in your Azure Maps account. Make sure to make a note of the unique identifier (`udid`) value, you will need it. The `udid` is is how you reference the geojson objects you uploaded into your Azure storage account from your source code.
170170

171+
<!---------------------------------------------------------------------------
171172
To upload the boundary and charging point data to Azure Maps Data service, run the following two cells:
172173
173174
```python
@@ -229,6 +230,7 @@ while True:
229230
time.sleep(0.2)
230231
poiUdid = getPoiUdid["udid"]
231232
```
233+
------------------------------------------------------------>
232234

233235
## Render the charging stations and reachable range on a map
234236

@@ -405,14 +407,14 @@ To learn more about Azure Notebooks, see
405407
[Azure Maps Jupyter Notebook repository]: https://github.com/Azure-Samples/Azure-Maps-Jupyter-Notebook
406408
[Azure Maps REST APIs]: /rest/api/maps
407409
[Azure Notebooks]: https://notebooks.azure.com
408-
[Data Upload API]: /rest/api/maps/data-v2/upload
409-
[Data Upload]: /rest/api/maps/data-v2/upload
410+
[Azure storage account]: /azure/storage/common/storage-account-create?tabs=azure-portal
410411
[Get Map Image API]: /rest/api/maps/render-v2/get-map-static-image
411412
[Get Map Image service]: /rest/api/maps/render-v2/get-map-static-image
412413
[Get Route Directions API]: /rest/api/maps/route/getroutedirections
413414
[Get Route Directions]: /rest/api/maps/route/getroutedirections
414415
[Get Route Range API]: /rest/api/maps/route/getrouterange
415416
[Get Route Range]: /rest/api/maps/route/getrouterange
417+
[How to create data registry]: how-to-create-data-registries.md
416418
[Jupyter Notebook document file]: https://github.com/Azure-Samples/Azure-Maps-Jupyter-Notebook/blob/master/AzureMapsJupyterSamples/Tutorials/EV%20Routing%20and%20Reachable%20Range/EVrouting.ipynb
417419
[manage authentication in Azure Maps]: how-to-manage-authentication.md
418420
[Matrix Routing API]: /rest/api/maps/route/postroutematrix

articles/azure-maps/understanding-azure-maps-transactions.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ titleSuffix: Microsoft Azure Maps
44
description: Learn about Microsoft Azure Maps Transactions
55
author: eriklindeman
66
ms.author: eriklind
7-
ms.date: 06/23/2022
7+
ms.date: 09/22/2023
88
ms.topic: reference
99
ms.service: azure-maps
1010
services: azure-maps
@@ -26,7 +26,8 @@ The following table summarizes the Azure Maps services that generate transaction
2626

2727
| Azure Maps Service | Billable | Transaction Calculation | Meter |
2828
|--------------------|----------|-------------------------|-------|
29-
| [Data v1]<br>[Data v2]<br>[Data registry] | Yes, except for `MapDataStorageService.GetDataStatus` and `MapDataStorageService.GetUserData`, which are nonbillable| One request = 1 transaction| <ul><li>Location Insights Data (Gen2 pricing)</li></ul>|
29+
| Data service (Deprecated<sup>1</sup>) | Yes, except for `MapDataStorageService.GetDataStatus` and `MapDataStorageService.GetUserData`, which are nonbillable| One request = 1 transaction| <ul><li>Location Insights Data (Gen2 pricing)</li></ul>|
30+
| [Data registry] | Yes | One request = 1 transaction| <ul><li>Location Insights Data (Gen2 pricing)</li></ul>|
3031
| [Geolocation]| Yes| One request = 1 transaction| <ul><li>Location Insights Geolocation (Gen2 pricing)</li><li>Standard S1 Geolocation Transactions (Gen1 S1 pricing)</li><li>Standard Geolocation Transactions (Gen1 S0 pricing)</li></ul>|
3132
| [Render] | Yes, except for Terra maps (`MapTile.GetTerraTile` and `layer=terra`) which are nonbillable.|<ul><li>15 tiles = 1 transaction</li><li>One request for Get Copyright = 1 transaction</li><li>One request for Get Map Attribution = 1 transaction</li><li>One request for Get Static Map = 1 transaction</li><li>One request for Get Map Tileset = 1 transaction</li></ul> <br> For Creator related usage, see the [Creator table]. |<ul><li>Maps Base Map Tiles (Gen2 pricing)</li><li>Maps Imagery Tiles (Gen2 pricing)</li><li>Maps Static Map Images (Gen2 pricing)</li><li>Maps Traffic Tiles (Gen2 pricing)</li><li>Maps Weather Tiles (Gen2 pricing)</li><li>Standard Hybrid Aerial Imagery Transactions (Gen1 S0 pricing)</li><li>Standard Aerial Imagery Transactions (Gen1 S0 pricing)</li><li>Standard S1 Aerial Imagery Transactions (Gen1 S1 pricing)</li><li>Standard S1 Hybrid Aerial Imagery Transactions (Gen1 S1 pricing)</li><li>Standard S1 Rendering Transactions (Gen1 S1 pricing)</li><li>Standard S1 Tile Transactions (Gen1 S1 pricing)</li><li>Standard S1 Weather Tile Transactions (Gen1 S1 pricing)</li><li>Standard Tile Transactions (Gen1 S0 pricing)</li><li>Standard Weather Tile Transactions (Gen1 S0 pricing)</li><li>Maps Copyright (Gen2 pricing, Gen1 S0 pricing and Gen1 S1 pricing)</li></ul>|
3233
| [Route] | Yes | One request = 1 transaction<br><ul><li>If using the Route Matrix, each cell in the Route Matrix request generates a billable Route transaction.</li><li>If using Batch Directions, each origin/destination coordinate pair in the Batch request call generates a billable Route transaction. Note, the billable Route transaction usage results generated by the batch request has **-Batch** appended to the API name of your Azure portal metrics report.</li></ul> | <ul><li>Location Insights Routing (Gen2 pricing)</li><li>Standard S1 Routing Transactions (Gen1 S1 pricing)</li><li>Standard Services API Transactions (Gen1 S0 pricing)</li></ul> |
@@ -36,6 +37,8 @@ The following table summarizes the Azure Maps services that generate transaction
3637
| [Traffic] | Yes | One request = 1 transaction (except tiles)<br>15 tiles = 1 transaction | <ul><li>Location Insights Traffic (Gen2 pricing)</li><li>Standard S1 Traffic Transactions (Gen1 S1 pricing)</li><li>Standard Geolocation Transactions (Gen1 S0 pricing)</li><li>Maps Traffic Tiles (Gen2 pricing)</li><li>Standard S1 Tile Transactions (Gen1 S1 pricing)</li><li>Standard Tile Transactions (Gen1 S0 pricing)</li></ul> |
3738
| [Weather] | Yes | One request = 1 transaction | <ul><li>Location Insights Weather (Gen2 pricing)</li><li>Standard S1 Weather Transactions (Gen1 S1 pricing)</li><li>Standard Weather Transactions (Gen1 S0 pricing)</li></ul> |
3839

40+
<sup>1</sup> The Azure Maps Data service (both [v1] and [v2]) is now deprecated and will be retired on 9/16/24. To avoid service disruptions, all calls to the Data service will need to be updated to use the Azure Maps [Data Registry service] by 9/16/24. For more information, see [How to create data registry].
41+
3942
<!-- In Bing Maps, any time a synchronous Truck Routing request is made, three transactions are counted. Does this apply also to Azure Maps?-->
4043

4144
## Azure Maps Creator
@@ -80,8 +83,10 @@ The following table summarizes the Azure Maps services that generate transaction
8083
[Conversion]: /rest/api/maps/v2/conversion
8184
[Creator table]: #azure-maps-creator
8285
[Data registry]: /rest/api/maps/data-registry
83-
[Data v1]: /rest/api/maps/data
84-
[Data v2]: /rest/api/maps/data-v2
86+
[v1]: /rest/api/maps/data
87+
[v2]: /rest/api/maps/data-v2
88+
[Data Registry service]: /rest/api/maps/data-registry
89+
[How to create data registry]: how-to-create-data-registries.md
8590
[Dataset]: /rest/api/maps/v2/dataset
8691
[Feature State]: /rest/api/maps/v2/feature-state
8792
[Geolocation]: /rest/api/maps/geolocation

0 commit comments

Comments
 (0)