You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ro...@apache.org on 2022/10/24 02:04:52 UTC

[incubator-uniffle-website] branch master updated: Add Hardware Doc (#12)

This is an automated email from the ASF dual-hosted git repository.

roryqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 4af8320  Add Hardware Doc (#12)
4af8320 is described below

commit 4af83203806a6c489ddf2675938d28d7ae815763
Author: roryqi <je...@gmail.com>
AuthorDate: Mon Oct 24 10:04:48 2022 +0800

    Add Hardware Doc (#12)
    
    Co-authored-by: roryqi <ro...@tencent.com>
---
 .../02-hardware-provisioning.md                    | 37 ++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/docs/03-deploy-uniffle-cluster/02-hardware-provisioning.md b/docs/03-deploy-uniffle-cluster/02-hardware-provisioning.md
new file mode 100644
index 0000000..66b2951
--- /dev/null
+++ b/docs/03-deploy-uniffle-cluster/02-hardware-provisioning.md
@@ -0,0 +1,37 @@
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one or more
+  ~ contributor license agreements.  See the NOTICE file distributed with
+  ~ this work for additional information regarding copyright ownership.
+  ~ The ASF licenses this file to You under the Apache License, Version 2.0
+  ~ (the "License"); you may not use this file except in compliance with
+  ~ the License.  You may obtain a copy of the License at
+  ~
+  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+# HARDWARE PROVISIONING
+A common question received by Uniffle users is how to configure hardware for it. While the right hardware will depend on the situation, we make the following recommendations.
+
+## LOCAL DISKS
+HDD or SSD is ok for Uniffle. We need to notice that we should provide enough quantity of disks for Uniffle. 
+Usually HDD provide 100MB/s write speed we should guarantee that the data can be flushed to disks.
+If our cluster applications write 1 GB/s in the busiest time, we should provide 10 HDD disks.
+
+## MEMORY
+We use the memory to reduce the random IO of write stage. If we have too many partitions, we will flush to small data to the disk.
+It will influence the performance, we should guarantee that every partition's memory is bigger than 3MB. 
+For example, if we have 1k partitions in our busiest time, we should provide 3 GB memory for them.
+
+## NETWORK
+In our experience, Uniffle are network-bound. Using a 10 Gigabit or higher network is the best way to make these applications faster.
+
+## CPU CORES
+Uniffle don't depend on the CPU too much. 
+  
+  
\ No newline at end of file