3

Disable kudu for the running web app. Why? Kudu is consuming the CPU periodically and I want to stop that.

So far I have tried to Kill the process by clicking on Properties >> Kill button. but this process gets start again.

enter image description here

AstroBoy
  • 337
  • 3
  • 16
  • Do you have any concerns about this issue? – Jason Pan Jan 13 '21 at 07:19
  • @Jason Pan: I have app service plan (isolated), with 2 instances, when i look in metrics for CPU utilization graph, I saw few spikes in it. but after splitting it with instances, CPU utilization spike only for 1 instance and not for other. Don't know why. When I diagnose it I thought its kudu process which is causing spike. so want to disable it. but that was not the case. Still lookin in it. – AstroBoy Jan 13 '21 at 07:59
  • You can try this method of mine, if not works, I will try to find another way to help you. – Jason Pan Jan 13 '21 at 08:02
  • @Jason Pan : I guess you forgot to provide the link – AstroBoy Jan 13 '21 at 09:33
  • I have post my answer, you can check it. – Jason Pan Jan 13 '21 at 09:34
  • Use below settings in `Application settings`, main site and scm site will run in different sandboxes. – Jason Pan Jan 13 '21 at 09:35

1 Answers1

5

You can use below settings in Application settings.

When separation enabled (the default), the main site and scm site run in different sandboxes.

WEBSITE_DISABLE_SCM_SEPARATION=true

enter image description here

Then you can check Process Explorer.

enter image description here

Offical Doc:

enter image description here

Use the same process for the user site and the scm site

Jason Pan
  • 15,263
  • 1
  • 14
  • 29