You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2020/05/22 07:18:01 UTC

[incubator-pinot] branch update_website updated (4eac5ab -> 9d62c4a)

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

xiangfu pushed a change to branch update_website
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git.


 discard 4eac5ab  Pinot website: fixing break links and updating installation guide
     new 9d62c4a  Pinot website: fixing break links and updating installation guide

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4eac5ab)
            \
             N -- N -- N   refs/heads/update_website (9d62c4a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 website/src/pages/index.js | 27 +++++++++------------------
 1 file changed, 9 insertions(+), 18 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org


[incubator-pinot] 01/01: Pinot website: fixing break links and updating installation guide

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a commit to branch update_website
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git

commit 9d62c4a0e0822e46524faa711db14e0341a1ccdc
Author: Xiang Fu <fx...@gmail.com>
AuthorDate: Thu May 21 23:51:39 2020 -0700

    Pinot website: fixing break links and updating installation guide
---
 website/docusaurus.config.js |  6 +++---
 website/src/pages/index.js   | 26 +++++++++++++++++++-------
 2 files changed, 22 insertions(+), 10 deletions(-)

diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index ae0fc2d..5ab8938 100755
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -62,10 +62,10 @@ module.exports = {
             },
             {
               label: 'Architecture',
-              to: 'https://docs.pinot.apache.org/concepts/architecture',
+              to: 'https://docs.pinot.apache.org/basics/architecture',
             },
             {
-              label: 'PluginsArchitecture',
+              label: 'Plugins Architecture',
               to: 'https://docs.pinot.apache.org/plugins/plugin-architecture',
             },
           ],
@@ -100,7 +100,7 @@ module.exports = {
             },
             {
               label: 'User Guide',
-              to: 'https://docs.pinot.apache.org/pinot-user-guide',
+              to: 'https://docs.pinot.apache.org/users',
             },
             {
               label: 'Administration',
diff --git a/website/src/pages/index.js b/website/src/pages/index.js
index 21056e8..7ad4752 100755
--- a/website/src/pages/index.js
+++ b/website/src/pages/index.js
@@ -212,20 +212,32 @@ function Installation() {
 
         <Tabs
           className="mini"
-          defaultValue="humans"
+          defaultValue="helm"
           values={[
-            { label: <><i className="feather icon-user-check"></i> For Humans</>, value: 'humans', },
-            { label: <><i className="feather icon-cpu"></i> For Machines</>, value: 'machines', },
+            { label: <><i className="feather icon-download-cloud"></i> Using Helm</>, value: 'helm', },
+            { label: <><i className="feather icon-download"></i> Using Binary</>, value: 'binary', },
+            { label: <><i className="feather icon-github"></i> Build From Source</>, value: 'github', },
           ]
         }>
-          <TabItem value="humans">
+          <TabItem value="helm">
             <CodeBlock className="language-bash">
-              wget https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.3.0/apache-pinot-incubating-0.3.0-bin.tar.gz
+              {
+                `helm repo add pinot https://raw.githubusercontent.com/apache/incubator-pinot/master/kubernetes/helm\nkubectl create ns pinot\nhelm install pinot pinot/pinot -n pinot --set cluster.name=pinot`
+              }
             </CodeBlock>
           </TabItem>
-          <TabItem value="machines">
+          <TabItem value="binary">
             <CodeBlock className="language-bash">
-            wget https://www.apache.org/dyn/closer.lua/incubator/pinot/apache-pinot-incubating-0.3.0/apache-pinot-incubating-0.3.0-src.tar.gz -y
+              {
+                `VERSION=0.3.0\nwget https://downloads.apache.org/incubator/pinot/apache-pinot-incubating-$VERSION/apache-pinot-incubating-$VERSION-bin.tar.gz\ntar vxf apache-pinot-incubating-*-bin.tar.gz\ncd apache-pinot-incubating-*-bin\nbin/quick-start-batch.sh`
+              }
+            </CodeBlock>
+          </TabItem>
+          <TabItem value="github">
+            <CodeBlock className="language-bash">
+              {
+                `# Clone a repo\ngit clone https://github.com/apache/incubator-pinot.git\ncd incubator-pinot\n\n# Build Pinot\nmvn clean install -DskipTests -Pbin-dist\n\n# Run the Quick Demo\ncd pinot-distribution/target/apache-pinot-incubating-*-SNAPSHOT-bin/apache-pinot-incubating-*-SNAPSHOT-bin\nbin/quick-start-batch.sh`
+              }
             </CodeBlock>
           </TabItem>
         </Tabs>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org