Question related to workflow limit | exceeded

I was using an workflow to update all companie accounts in the db (1200) And i exceeded the workflow limit Is there an option, to let this run smoother - slower? or can i exceed the workflow limit somewhere? Regards Gerrit
No description
3 Replies
Prastoin
Prastoin2mo ago
Hey @inkontaktbringer I assume you're self hosting ?
@ConfigVariablesMetadata({
group: ConfigVariablesGroup.RateLimiting,
description: 'Time-to-live for workflow execution throttle in milliseconds',
type: ConfigVariableType.NUMBER,
})
@CastToPositiveNumber()
WORKFLOW_EXEC_THROTTLE_TTL = 1000;
@ConfigVariablesMetadata({
group: ConfigVariablesGroup.RateLimiting,
description: 'Time-to-live for workflow execution throttle in milliseconds',
type: ConfigVariableType.NUMBER,
})
@CastToPositiveNumber()
WORKFLOW_EXEC_THROTTLE_TTL = 1000;
This is seems to be configurable through your .env You can configure that directly from your instance admin panel
inkontaktbringer
inkontaktbringerOP2mo ago
ah, that´s great. So adding this block to my .env will solve the issue? Or do i need to tweak it to my server specs?
Prastoin
Prastoin2mo ago
You have to two ways to setup env variables - From the ui through the admin panel in your settings page of any workspace from the moment the user is twenty admin - Update both your .env and docker-compose.yml

Did you find this page helpful?