Open cheyang opened 4 years ago
What feature you'd like to add:
Add init container to allluxio helm chart to prepare memory directory with mkdir -p /alluxio/ram && mount -t tmpfs -o size=230G tmpfs /alluxio/ram. You can check an example: https://github.com/fluid-cloudnative/fluid/blob/master/charts/alluxio/templates/worker/daemonset.yaml#L55
memory
mkdir -p /alluxio/ram && mount -t tmpfs -o size=230G tmpfs /alluxio/ram
Why is this feature needed:
Currently we only support /dev/shm, but it's not flexible. We'd like to create tmpfs on demand.
/dev/shm
I will do it.
What feature you'd like to add:
Add init container to allluxio helm chart to prepare
memory
directory withmkdir -p /alluxio/ram && mount -t tmpfs -o size=230G tmpfs /alluxio/ram
. You can check an example: https://github.com/fluid-cloudnative/fluid/blob/master/charts/alluxio/templates/worker/daemonset.yaml#L55Why is this feature needed:
Currently we only support
/dev/shm
, but it's not flexible. We'd like to create tmpfs on demand.