Azure / logicapps

Azure Logic Apps labs, samples, and tools
MIT License
357 stars 299 forks source link

Logic apps on docker - High CPU usage #149

Closed shankarmaha closed 3 years ago

shankarmaha commented 4 years ago

I have successfully deployed my logic app into a docker container. However, I see very high CPU usage on the docker instance

image

laveeshb commented 4 years ago

CPU usage depends on the workload. What is your logic app doing?

shankarmaha commented 4 years ago

It's basically doing nothing. I just have a request and response actions in them

{ "definition": { "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "actions": { "Response": { "type": "Response", "kind": "http", "inputs": { "statusCode": 200, "body": "@triggerBody()" }, "runAfter": {} } }, "triggers": { "manual": { "type": "Request", "kind": "Http", "inputs": { "schema": {} } } }, "contentVersion": "1.0.0.0", "outputs": {} }, "kind": "Stateful" }

shailesh-agre commented 3 years ago

@shankarmaha are you trying to run it locally? In that case this may be related to https://github.com/Azure/logicapps/issues/193

shailesh-agre commented 3 years ago

Currently closing as related to 193