We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this is my warmup configurations:
custom: warmup: workWeek: enabled: true events: - schedule: cron(*/10 5-19 ? * SUN-FRI *) concurrency: 3 prewarm: false cleanFolder: false role: IamRoleLambdaExecution weekEnd: enabled: true events: - schedule: cron(*/30 5-13 ? * SAT *) concurrency: 1 prewarm: false cleanFolder: false role: IamRoleLambdaExecution
the problem is, that every lambda i declare automatically gets this configuration, this is a problem as i thought by default it should not be enabled.
if i put this section on a specific lambda then it will not be warmed:
warmup: workWeek: enabled: false weekEnd: enabled: false
The text was updated successfully, but these errors were encountered:
You just do it the other way around.
In the general config, you configure your warmers as disabled:
custom: warmup: workWeek: enabled: false events: - schedule: cron(*/10 5-19 ? * SUN-FRI *) concurrency: 3 prewarm: false cleanFolder: false role: IamRoleLambdaExecution weekEnd: enabled: false events: - schedule: cron(*/30 5-13 ? * SAT *) concurrency: 1 prewarm: false cleanFolder: false role: IamRoleLambdaExecution
and in the specific lambdas that you want to warm, you enable the warmer(s) that you want:
warmup: workWeek: enabled: true weekEnd: enabled: true
Sorry, something went wrong.
You just do it the other way around. In the general config, you configure your warmers as disabled: custom: warmup: workWeek: enabled: false events: - schedule: cron(*/10 5-19 ? * SUN-FRI *) concurrency: 3 prewarm: false cleanFolder: false role: IamRoleLambdaExecution weekEnd: enabled: false events: - schedule: cron(*/30 5-13 ? * SAT *) concurrency: 1 prewarm: false cleanFolder: false role: IamRoleLambdaExecution and in the specific lambdas that you want to warm, you enable the warmer(s) that you want: warmup: workWeek: enabled: true weekEnd: enabled: true
got it, when i tried it in former versions it looked like warmers were not created. thanks
No branches or pull requests
this is my warmup configurations:
the problem is, that every lambda i declare automatically gets this configuration, this is a problem as i thought by default it should not be enabled.
if i put this section on a specific lambda then it will not be warmed:
The text was updated successfully, but these errors were encountered: