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:56:46 UTC

[incubator-uniffle-website] branch features-list updated: Update features in homepage

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

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


The following commit(s) were added to refs/heads/features-list by this push:
     new d868c6c  Update features in homepage
d868c6c is described below

commit d868c6c3def6c37b920637afb6cab7604a2deeb4
Author: Kaijie Chen <ck...@apache.org>
AuthorDate: Sat Nov 12 16:56:43 2022 +0800

    Update features in homepage
---
 src/components/HomepageFeatures/index.tsx | 28 ++++++++++++++++++++++++++--
 1 file changed, 26 insertions(+), 2 deletions(-)

diff --git a/src/components/HomepageFeatures/index.tsx b/src/components/HomepageFeatures/index.tsx
index 13203d7..0c91ba2 100644
--- a/src/components/HomepageFeatures/index.tsx
+++ b/src/components/HomepageFeatures/index.tsx
@@ -9,10 +9,26 @@ 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: 'Reliable',
+        description: (
+            <>
+                Reduces out of memory (or disk space) failures for large jobs.
+            </>
+        ),
+    },
+    {
+        title: 'Disaggregated Storage',
+        description: (
+            <>
+                Enables orchestration and improves resource utilization.
             </>
         ),
     },
@@ -32,6 +48,14 @@ const FeatureList: FeatureItem[] = [
             </>
         ),
     },
+    {
+        title: 'Kubernetes integration',
+        description: (
+            <>
+                Works well in containerized environments like Kubernetes.
+            </>
+        ),
+    },
 ];
 
 function Feature({title, description}: FeatureItem) {