Skip to content

Commit 69e6513

Browse files
committed
adding few changes to Azure Function for MySQL
1 parent 5936f8b commit 69e6513

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

articles/azure-functions/functions-bindings-azure-mysql-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ The following table explains the binding configuration properties that you set i
13201320
>
13211321
>It is on different programming language if special character is supported to define members attributes containing special characters. For example, C# have few limitations to define [variables](https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/identifier-names)
13221322
>
1323-
>Apart from that, the output binding covering all special characters can be done using 'JObject'. The detailed example can be followed in this [github link](https://github.com/Azure/azure-functions-mysql-extension/blob/main/samples/samples-csharp/OutputBindingSamples/AddProductJObject.cs)
1323+
>Apart from that, the output binding covering all special characters can be done using 'JObject'. The detailed example can be followed in this [Github link](https://github.com/Azure/azure-functions-mysql-extension/blob/main/samples/samples-csharp/OutputBindingSamples/AddProductJObject.cs)
13241324
>
13251325
13261326
## Usage

articles/azure-functions/functions-bindings-azure-mysql-trigger.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ zone_pivot_groups: programming-languages-set-functions-lang-workers
1818
# Azure Database for MySQL trigger for Functions
1919

2020
> [!NOTE]
21-
> In consumption plan functions, automatic scaling is not supported for Database for MySQL trigger. If the automatic scaling process stops the function, all processing of events will stop and it will need to be manually restarted.
22-
>
23-
> Use premium or dedicated plans for [scaling benefits](functions-scale.md) with MySQL trigger.
21+
> While input and output bindings will be supported on all plans, the MySQL Trigger binding will be available only on [dedicated and premium plans](functions-scale.md) during the public preview. Support for Consumption plans in the MySQL Trigger binding will be introduced at general availability.
2422
>
2523
2624
The Azure Database for MySQL trigger creates a new column to monitor when a row is created, or deleted. The Trigger bindings monitor the user table for changes (inserts, updates) and invokes the function with updated row data.
@@ -36,8 +34,6 @@ CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
3634
The leases table contains all columns corresponding to the primary key from the user table and two additional columns _az_func_AttemptCount and _az_func_LeaseExpirationTime. So, if any of the primary key columns happen to have the same name, that will result in an error message listing any conflicts. In this case, the listed primary key columns must be renamed for the trigger to work.
3735

3836

39-
The Azure Database for MySQL trigger scaling decisions for the Consumption and Premium plans are done via target-based scaling. For more information, see [Target-based scaling](functions-target-based-scaling.md).
40-
4137
## Functionality Overview
4238

4339
When the trigger function starts, it will initiate two separate loops (Change Polling Loop and Lease Renewal Loop) that will run continuously until the function is stopped.

0 commit comments

Comments
 (0)