Windmill

W

Windmill

Join the community to ask questions about Windmill and get answers from other members.

Join

help

general

changelog

Cannot navigate between Nodes in Decision Tree app component

Hello, My team and I have encountered an issue with switching between nodes in the decision trees. The next button on the nodes are disabled although the condition on the node has been statically set to true. Debugging the nodes also has the same results. Attached below is a reproduction of the encountered error. We observed this behavior about the same time as yesterday. Windmill Version: Windmill EE v1.498.0-7-gc08832215...

Sudden and huge growth of Windmill's DB

I noticed just today that starting from about a month ago, our Windmill's CloudSQL instance started to grow in disk usage from 3-4 GBs to 90-100 GBs all of a sudden. I know, this is not entirely related to Windmill per se, but maybe, based on your experience, there are some specific things that can trigger this growth and that I should take a look at first of all? Thanks!...
No description

For Loop is very long

I try to iterate over a loop of 200 elements fetched from mongodb. The for loop step is very long. But I do not understand why. What can I do the make this internal step from windmill faster ?...
No description

Understanding worker memory logs

We are running Windmill on ECS (Windmill Enterprise Edition v1.480.0) and seeing OOM errors after enabling S3 log forwarding. After inspecting the logs, we see messages like
{"timestamp":"2025-06-13T16:24:27.339628Z","level":"INFO","message":"ping update, memory: container=1742MB, windmill=1842MB","worker":"<worker_id>","hostname":"<host_name>","target":"windmill_worker::worker"}
{"timestamp":"2025-06-13T16:24:27.339628Z","level":"INFO","message":"ping update, memory: container=1742MB, windmill=1842MB","worker":"<worker_id>","hostname":"<host_name>","target":"windmill_worker::worker"}
...

Where do I find the general "table" component?

According to the documentation, there are 3 table components: https://www.windmill.dev/docs/misc/guides/table Where do I find the simple "Table" component? I don't find it in the components list....
No description

Cursor MPC Error listing offerings

I have configured windmill-mpc in cursor using this config `{ "mcpServers": { "windmill-mpc": { "url": "https://windmill.redacted.com/api/mcp/w/redacted/sse?token=REDACTED"...

Disabling SSL certificates in Deno REST script

Hello, I am trying to temporarily disable SSL certificate verification in a Deno REST script. According to the deno documentation, I would need to add --unsafely-ignore-certificate-errors to my deno run script. Is there a means of getting around this limitation in Windmill? Thanks. Windmill version: Windmill EE v1.495.1...

Unable to configure webhooks for Sendgrid callbacks

Hi all I didn't found how to configure the Windmill token for bearer authentication with Sendgrid webhooks. I wang to get the callback results in order to know the status of Emails delivery (Processed, Delivered,Dropped ...). Any idea ? Thank you...

Is there a way to integrate with gitea?

Hi all. I self host gitea, which is an open source git server implementation that aims to be compatible with github. Is there a way of persuading the github integration to play with it?

"Executions" during sleep

Hi all. unexpectedly, I just ran out of executions on my free cloud plan, right at the beginning of the month, I guess because I was repeatedly testing a script while developing it today. I can't find where to see the list of what past actions cost how many executions, but before today I was much closer to 0 than 1000. The script I was testing runs for 5 minutes, which is a lot of seconds, but most of that time is spent sleeping, waiting for time to pass before querying an external service. No processing is happening during this time, so does Windmill stop counting executions while sleeping? If not -- I'm using javascript's setTimeout() to sleep, is there something else I should use?...

Content from flow input fields don't persist upon refresh

Hi, I've found the content in the flow input fields are do not persist when I refresh or leave the page of a flow, except when the default value is used. Is this expected behavior and should I be using flow inputs for fields I expect to change often but still need to be persisted? My current workaround is to update the default value instead.
No description

Pass environment variables to `uv pip install`

I am installing a python package from a private repository and I need the uv pip install process to have access to the SSH_AUTH_SOCK environment variable. Unfortunately it looks like looks like env vars are cleared before uv pip install (ref) . Would it be possible to expose some configuration to allow custom envars to be passed during env instantiation (i.e. uv pip install) / prevent the env clean in the first place? Is there another approach that I am missing?...

How to connect to MS Teams

Hi There, I'm new to discord and relativly new to Windmill, so please excuse, if I'm missposting here. I'm trying to use the MS Teams interactive approval integation. But I'm failing to setup the OAUTh. I cannot click connect to Teams in the Workspace settings: (See attachments)...
No description

Invalid flow failure while handling flow error

Hello, I have recently encountered an error within my flows error handler I can't explain/understand. My error handler is to read the flows state and write it to a database via the following bun script below ```js import * as wmill from "windmill-client" ...
No description

Windmill Apps: frontend script helpers : recompute a backend script and wait for new job id

Hi! I was not able to do this. Is there any way to recompute / run backend script from front end code, and wait for the result or for the new job id? (even in async function, I'm still getting a stale job id)...

Cannot delete components from my app

Hello, I recently tried deleting some components from my app but could not. There are no errors in the dev tools panel either to assist with resolving. I can also cut and move the component, but deleting it fails. Attached is a short video on the issue. Appreciate any assistance on this issue. Thanks

[solver] Agent workers and permissioned_as

Hi there, I'm trying to execute some script in an un-trusted environments, I organized my scripts and secrets inside folder, and I currently have: - /f/customer1/remote_exec.ts - /f/customer2/remote_exec.ts ...

What is the SQL statements that require Postgres Advisory Lock

hi, could anyone help point what are the SQL statements that require Postgres Advisory Lock, which cause the following error: ``` jemalloc enabled Connecting to database......

Cannot convert between String and JSONB in PostgreSQL

Given the following json object below,
["ABC","DEF","GHI"]
["ABC","DEF","GHI"]
I would like to update a record in my postgresql database of type jsonb using a postgresql script such as below:...