jolly-florist-66728
01/21/2025, 11:41 PMuseOffloadedWorkflowClosure
parameter to true
. This reduces the size of the data stored in etcd and can help avoid the error (source).
Would you like more detail on how to configure this setting?
Sources:
- https://discuss.flyte.org/t/16659081/hi-just-tried-updating-from-1-9-to-1-11-and-my-workflows-are/ π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.average-finland-92144
01/22/2025, 11:55 AMthousands-car-79657
01/22/2025, 5:59 PMthousands-car-79657
01/23/2025, 6:45 PMuseOffloadedWorkflowClosure
to true. The workaround we did is increase memory of flytepropellerthousands-car-79657
01/24/2025, 12:34 AMuseOffloadedWorkflowClosure
in flyte helm chart?jolly-florist-66728
01/24/2025, 12:34 AMuseOffloadedWorkflowClosure
in the Flyte Helm chart, you need to set this parameter in the FlyteAdmin configuration. This involves editing the configuration file to enable offloading of static workflow information to a blob store. Here's a general approach:
1. Locate the FlyteAdmin Configuration: This is typically found in the Helm chart values or a configuration file used by FlyteAdmin.
2. Set the Parameter: Add or update the useOffloadedWorkflowClosure
parameter to true
in the configuration.
3. Deploy the Changes: After updating the configuration, redeploy the Flyte Helm chart to apply the changes.
For more detailed steps, you might need to refer to the specific Helm chart documentation or configuration files used in your deployment. If you need further assistance, please let me know!
Sources:
- https://docs.flyte.org/en/latest/deployment/configuration/performance.html#offloading-static-workflow-information-from-crd π 0 button π 1 button π‘ Hint: Mention @ancient-wolf-19325 in the thread for followups.thousands-car-79657
01/24/2025, 12:36 AMuseOffloadedWorkflowClosure
in the configmap
?jolly-florist-66728
01/24/2025, 12:36 AMuseOffloadedWorkflowClosure
in the configmap
, you need to update the FlyteAdmin configuration within the Kubernetes ConfigMap. Here's how you can do it:
1. Edit the ConfigMap: Locate the ConfigMap used by FlyteAdmin. This is typically named something like flyte-admin-config
or similar, depending on your setup.
2. Add the Configuration: Within the ConfigMap, add or update the useOffloadedWorkflowClosure
setting under the appropriate section. It should look something like this:
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-admin-config
namespace: flyte
data:
flyteadmin_config.yaml: |
adminServer:
flyteadmin:
useOffloadedWorkflowClosure: true
3. Apply the Changes: After editing the ConfigMap, apply the changes using kubectl apply -f <configmap-file>.yaml
.
4. Restart FlyteAdmin: To ensure the changes take effect, restart the FlyteAdmin deployment. You can do this with:
kubectl rollout restart deployment <flyteadmin-deployment-name> -n flyte
This configuration will enable the offloading of static workflow information to a blob store, reducing the size of the data stored in etcd.
Would you like more detailed guidance on any of these steps?
Sources:
- https://github.com/flyteorg/flyte/pull/3087 π 0 button π 0 button π‘ Hint: Mention @runllm in the thread for followups.