From 5b6337f6710ccde3f6f927aab5c0fc11effb0f58 Mon Sep 17 00:00:00 2001 From: ssz1997 Date: Fri, 18 Feb 2022 21:09:18 -0800 Subject: [PATCH] Use less job worker threads Signed-off-by: ssz1997 --- pkg/ddc/alluxio/transform_optimization.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ddc/alluxio/transform_optimization.go b/pkg/ddc/alluxio/transform_optimization.go index 4496609d674..0bdbb7825ba 100644 --- a/pkg/ddc/alluxio/transform_optimization.go +++ b/pkg/ddc/alluxio/transform_optimization.go @@ -77,7 +77,7 @@ func (e *AlluxioEngine) optimizeDefaultProperties(runtime *datav1alpha1.AlluxioR // set the default max size of metadata cache setDefaultProperties(runtime, value, "alluxio.user.metadata.cache.max.size", "6000000") setDefaultProperties(runtime, value, "alluxio.fuse.cached.paths.max", "1000000") - setDefaultProperties(runtime, value, "alluxio.job.worker.threadpool.size", "164") + setDefaultProperties(runtime, value, "alluxio.job.worker.threadpool.size", "32") setDefaultProperties(runtime, value, "alluxio.user.worker.list.refresh.interval", "2min") setDefaultProperties(runtime, value, "alluxio.user.logging.threshold", "1000ms") setDefaultProperties(runtime, value, "alluxio.fuse.logging.threshold", "1000ms")