Can it be that there is a bug in the flyte-core he...
# flyte-deployment
r
Can it be that there is a bug in the flyte-core helm charts? The readme seems to say to use
flytepropeller.cacheSizeMbs
to configure the cache which generates this cache.yaml
Copy code
cache.yaml: |
    cache:
      max_size_mbs: {{ .Values.flytepropeller.cacheSizeMbs }}
      target_gc_percent: 70
But for me that didn't enable caching because
storage
is missing. Adding
Copy code
configmap:
  core:
    storage:
      cache:
        max_size_mbs: 5000
        target_gc_percent: 70
to my
values.yaml
enabled the caching.
f
That is very small cache size
It needs to be couple gigabytes
And for your workload please use a bigger propeller
r
Wouldn't
5000
correspond to 5GB?
f
True morning goggles
r
Great, thanks. Anyway I've opened https://github.com/flyteorg/flyte/pull/5739 to see if this is indeed a bug in the helm chart.