0

I have an Azure function in production where I need to add a few new function keys on an Http trigger and a new connection string (when I mean new, it is really new, it is not replacing another one that already exists).

My doubt is if this causes downtime or if it requires restarting the function app in order to grab the new settings, can anyone help?

Thanks

2 Answers 2

2

Have you consider using Deployment Slots , give you advantage of fallbacks, per-warnings and waiting time of starting/restarting.

Sign up to request clarification or add additional context in comments.

Comments

1

When you make changes to application setting the host process needs to be restarted to pick up the latest/new values. You can find same details here. So you may face some downtime due to restart of your application.

Also same mentioned in azure-functions-host github as quoted below. Please refer here.

Once an App Settings value is updated function runtime will be restarted and new value will be picked up.

Any change to application setting will restart your application no matter programmatically or manually using portal. You get same message when you're doing it manually -

enter image description here

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.