Windmill

W

Windmill

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

Join

help

general

changelog

Setting default_job_timeout via instance_settings.yaml

Hello, I am unable to set the instance-level job timeout via my instance_settings.yaml . I created a github issue for this over the weekend (https://github.com/windmill-labs/windmill/issues/6281) . Pleae let me know if there is something wrong with my approach or if this is indeed a Windmill bug. Thank you!...

Saving to App State from File Input.

I am trying to create a CSV previewer in the windmill app editor (more steps later that is just step 1)... and I'm thinking my process should be that when a file is uploaded to the "file input" component, a background runnable will update state.csvContent to the decoded csv string, and then my preview text box watches state.csvContent and updates appropriately. The issue i'm encountering is that I can't seem to get state to update. In my background runnable, I have passed state as an input. ```js export async function main(csv_file: string, state: any) {...

mssql returns double-nested results

MSSQL: Returns [[{...}, {...}]] (array wrapped in another array) PostgreSQL: Returns [{...}, {...}] (direct array of objects) is this expected bahaviour please? (using agent windows worker)...

For Loops hangs if any iterations fail

Hi! Thank you for the great tool! I was testing the following flow: - it fetches rss articles - processes articles in a for loop - fetches article content...

WINDMILL TOO BIG

I'm trying to pass 600kb of bytes (tried both parquet and pickle) between steps in a flow. But interface says WINDMILL TOO BIG and when I try to load that as a variable into the next step it seems to me like it tries to load "WINDMILL TOO BIG" as a string. I though there was a 50MB cap on this. Could someone help me?

We are setting up workspaces to share with our teams is it possible to use OKTA AD-Group to give acc

We are setting up a self-hosted instance and we are integrating okta. Is it possible to use AD Group to give access to workspaces ?...

Including query params

Do HTTP routes support this? Trying with the following: ?key=1234&include_query=key But it's not being used and shows the key input to be empty....

Automatic password update for DB resource ???

Hi, I'm using a AWS database and we have a password change rotation for 7 days. There any feature on Windmill that can help me update the password for this resource automatically ?

Scheduling a script programmatically from a script

i have a python backend it has a internal route that the windmill can query using a key that i can verify, so i want to trigger a script from the backend that windmill can schedule for 1 hours then when that script trigger it basically calling the backend again to send a mail then if it successful it reschedule it self again for 2 hours so after this time it terminate. Any suggesstion will be appreciated

Webhooks trigger from embedded CE

I have a customer using NextCloud which has embedded Windmill CE as their flow engine. We want to trigger some scripts in that instance from external services. But I did not see any way to get to a webhook trigger URL. The normal spots I would look for were not present. Maybe its because the version is old - 1.394? If I have the instance base URL - can I translate that into a standard windmill /api route? For example, in the WM in NextCloud, the path of the instance base URL is: index.php/apps/a...

Haalp! Trying Windmill for the first time and failing!

A dev with 10+ years of Node/TS experience, but still can't figure it out! Did wmill sync push --yes Run from the UI:...

Need Help with Cursor and Windmill MCP Connection

I've connected Cursor to my Windmill MCP server but it's not working. When I try to run tasks, I get errors. Can you help me fix this?
No description

Nested flows/scripts logs in main flow

When there is a flow which contains another flow or scripts then the nested one's logs don't show up in the main flow logs. Any way to show them?

Static Variables limited to entire flow

Hi Everyone, I have some static values which I want to use in multiple steps. But I don't see any way to initialise it once in the flow and use for all the steps. Currently, I have to set the static variables for every step. Is there a way to set any variable for the entire flow and use it in all the steps....

Dropdown menu stop working

Seems like the dropdown menu component stop executing the button actions, frontend and backend scripts. I made a minimun app reproduction: https://app.windmill.dev/apps/edit/u/tonyalveslopes/exceeding_app workspace: teste23...

Problem with third party library

Hi, I'm having a problem when try to run a script that pulling third party library. The error message give a hine that i can "Replace window with globalThis". But i don't use any 'window' in my script at all. { "error": { "name": "ExecutionErr", "message": "exit code for "deno run": 1, last log lines:\nerror: Uncaught (in promise) ReferenceError: window is not defined\n}(window || this, (function () {\n ^\n at https://deno.land/x/deno_moment@v1.1.2/moment-copy-2-24-0.js:12:3\n info: window global is not available in Deno 2.\n hint: Replace window with globalThis.",...

Operator not able to run flow

Hi! In the latest I have a operator that's not able to execute any flow that was possible on lasts versions. Looking at the network calls, I saw that he's logged out after this: /api/w/financeiro-kedu/workspaces/get_secondary_storage_names If I change him to admin of workspace, he can execute the flow. ...

Unable to run scripts or complete any actions

I can't run any scripts, when I open a script I gwt the following error: Sql error: error returned from database: relation "completed_job" does not exist...

Unable to enable Code Completion self hosted and Ollama Custom AI

Hello, I have a self hosted Community Edition deployed and connected to Ollama using a Custom AI resource. I have the Codestral model pulled but cannot enable Code Completion. Testing the integration passes, and it is able to generate deceptions for scripts. What do I have to do to enable Code Completion?
No description

Is there a fixed schedule that kills job data after "Retention period in secs" has passed?

Since we're actively fighting excessively large JSONB args in our jobs, I have another question about retention. If we set retention period for the instance to 4 days, should we expect to see data for 2025-07-07? I assume that we shouldn't and the garbage collector just didn't have a chance to delete them yet. ...