You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uniffle.apache.org by ck...@apache.org on 2022/11/12 08:58:35 UTC

[incubator-uniffle-website] branch master updated: Update features list in homepage (#18)

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

ckj 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 d824300  Update features list in homepage (#18)
d824300 is described below

commit d824300a43119e1288ebfd240e90e46f5dfe752b
Author: Kaijie Chen <ck...@apache.org>
AuthorDate: Sat Nov 12 16:58:30 2022 +0800

    Update features list in homepage (#18)
---
 src/components/HomepageFeatures/index.tsx | 36 +++++++++++++++++++++++++------
 1 file changed, 30 insertions(+), 6 deletions(-)

diff --git a/src/components/HomepageFeatures/index.tsx b/src/components/HomepageFeatures/index.tsx
index 3ac62fe..0c91ba2 100644
--- a/src/components/HomepageFeatures/index.tsx
+++ b/src/components/HomepageFeatures/index.tsx
@@ -9,26 +9,50 @@ type FeatureItem = {
 
 const FeatureList: FeatureItem[] = [
     {
-        title: 'What is Apache Uniffle(Incubating)',
+        title: 'Fast',
         description: (
             <>
-                Apache Uniffle(Incubating) is a Remote Shuffle Service, and provides the capability for Apache Spark applications to store shuffle data on remote servers.
+                Reduces number of connections and random I/O in data shuffle.
             </>
         ),
     },
     {
-        title: 'Supported Version',
+        title: 'Reliable',
         description: (
             <>
-                Current support Spark 2.3.x, Spark 2.4.x, Spark3.0.x, Spark 3.1.x, Spark 3.2.x, and support Hadoop 2.8.5's MapReduce framework.
+                Reduces out of memory (or disk space) failures for large jobs.
             </>
         ),
     },
     {
-        title: 'Support',
+        title: 'Disaggregated Storage',
         description: (
             <>
-                We provide free support for users using this project.
+                Enables orchestration and improves resource utilization.
+            </>
+        ),
+    },
+    {
+        title: 'Spark Support',
+        description: (
+            <>
+                Supports Apache Spark 2.3.x, 2.4.x, 3.0.x, 3.1.x, 3.2.x.
+            </>
+        ),
+    },
+    {
+        title: 'MapReduce Support',
+        description: (
+            <>
+                Supports the MapReduce framework of Apache Hadoop 2.8.x.
+            </>
+        ),
+    },
+    {
+        title: 'Kubernetes integration',
+        description: (
+            <>
+                Works well in containerized environments like Kubernetes.
             </>
         ),
     },