Azure Functions Tips: change the limit for the size of body in a function (2024)

When you implement an Http Trigger Function that manages a request with a body, you have a size limit for the body itself. The default value for this limit is 100Mb (actually 104857600 bytes and you can read it in the Http Trigger documentation).

You can manage this limit using the Function App configuration. In particular, you can add the setting FUNCTIONS_REQUEST_BODY_SIZE_LIMIT to set the maximum number of bytes you support in a single Http request.

Just to test how this setting works, use the following simple function:

[FunctionName("PostSomething")]public IActionResult PostSomething( [HttpTrigger(AuthorizationLevel.Function, "post", Route = "post")] HttpRequest req, ILogger log){ log.LogInformation("C# HTTP trigger function processed a request."); return new OkResult();}

You can do it also in your machine:

  • Add the config to your local setting file of the Function project:
{ "IsEncrypted": false, "Values": { "AzureWebJobsStorage": "UseDevelopmentStorage=true", "FUNCTIONS_WORKER_RUNTIME": "dotnet", "FUNCTIONS_REQUEST_BODY_SIZE_LIMIT": 100 }}
  • Run the project:

Azure Functions Tips: change the limit for the size of body in a function (1)

  • Make a POST Http request (for example using curl):
curl -X POST http://localhost:7077/api/post --data "This is the payload of the request and its size is more than 100 bytes. The function should throw an exception!!"

  • The function's log should display the error related to the size of the body:

Azure Functions Tips: change the limit for the size of body in a function (2)

You can have the same behavior if you set the application setting value in a Function App on Azure:

Azure Functions Tips: change the limit for the size of body in a function (3)

and then you can test the function:

Azure Functions Tips: change the limit for the size of body in a function (4)

having the error:

Azure Functions Tips: change the limit for the size of body in a function (5)

Azure Functions Tips: change the limit for the size of body in a function (2024)
Top Articles
Apex Legends Matchmaking Update
How to clear the SSL state in a browser
Design215 Word Pattern Finder
Craigslist Vermillion South Dakota
Crazybowie_15 tit*
Campaign Homecoming Queen Posters
A.e.a.o.n.m.s
Full Range 10 Bar Selection Box
Elbasha Ganash Corporation · 2521 31st Ave, Apt B21, Astoria, NY 11106
Alexandria Van Starrenburg
The Superhuman Guide to Twitter Advanced Search: 23 Hidden Ways to Use Advanced Search for Marketing and Sales
Mflwer
Wal-Mart 140 Supercenter Products
Wicked Local Plymouth Police Log 2022
Puretalkusa.com/Amac
8664751911
Byui Calendar Fall 2023
Selfservice Bright Lending
Sea To Dallas Google Flights
Euro Style Scrub Caps
Magic Seaweed Daytona
Tips and Walkthrough: Candy Crush Level 9795
Chicago Based Pizza Chain Familiarly
Znamy dalsze plany Magdaleny Fręch. Nie będzie nawet chwili przerwy
Bidrl.com Visalia
Dr Seuss Star Bellied Sneetches Pdf
Evil Dead Rise Showtimes Near Sierra Vista Cinemas 16
Great ATV Riding Tips for Beginners
Southtown 101 Menu
Shauna's Art Studio Laurel Mississippi
Bad Business Private Server Commands
Xfinity Outage Map Lacey Wa
Rise Meadville Reviews
11 Pm Pst
20 Best Things to Do in Thousand Oaks, CA - Travel Lens
Pensacola Cars Craigslist
Koninklijk Theater Tuschinski
2020 Can-Am DS 90 X Vs 2020 Honda TRX90X: By the Numbers
Craigslist Mexicali Cars And Trucks - By Owner
Uvalde Topic
Verizon Outage Cuyahoga Falls Ohio
Danielle Ranslow Obituary
Brandon Spikes Career Earnings
Best Conjuration Spell In Skyrim
Tacos Diego Hugoton Ks
Value Village Silver Spring Photos
Ajpw Sugar Glider Worth
Laura Houston Wbap
Image Mate Orange County
2487872771
Read Love in Orbit - Chapter 2 - Page 974 | MangaBuddy
Elizabethtown Mesothelioma Legal Question
Latest Posts
Article information

Author: Gov. Deandrea McKenzie

Last Updated:

Views: 6196

Rating: 4.6 / 5 (46 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Gov. Deandrea McKenzie

Birthday: 2001-01-17

Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

Phone: +813077629322

Job: Real-Estate Executive

Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.