You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pegasus.apache.org by wu...@apache.org on 2020/09/03 10:39:12 UTC

[incubator-pegasus-website] branch master updated: fix invalid url with pegasus-kv.github.io and fix algolia search config

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 511b9a6  fix invalid url with pegasus-kv.github.io and fix algolia search config
511b9a6 is described below

commit 511b9a636664367d97cf9bd384f70b219521d498
Author: neverchanje <wu...@gmail.com>
AuthorDate: Thu Sep 3 18:39:00 2020 +0800

    fix invalid url with pegasus-kv.github.io and fix algolia search config
---
 _api/geo.md                                      | 4 ++--
 _community/proposal.md                           | 8 ++++----
 _config.yml                                      | 1 -
 _includes/algolia.html                           | 3 +--
 _posts/2019-06-09-how-i-build-pegasus-website.md | 6 +++---
 _posts/2020-02-06-partition-split-design.md      | 2 +-
 _releases/index.md                               | 2 +-
 _releases/v1.11.6.md                             | 2 +-
 _releases/v1.12.0.md                             | 2 +-
 9 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/_api/geo.md b/_api/geo.md
index 8ec2822..f8ec490 100755
--- a/_api/geo.md
+++ b/_api/geo.md
@@ -113,7 +113,7 @@ hashkey直接由一维编码的前缀构成。比如在我们的LBS业务场景
 
 ### value
 
-GEO API的value必须能够解析出经纬度,具体的解析方式参考[自定义extrator](https://pegasus-kv.github.io/api/geo#%E8%87%AA%E5%AE%9A%E4%B9%89extrator)。
+GEO API的value必须能够解析出经纬度,具体的解析方式参考[自定义extrator](https://pegasus.apache.org/api/geo#%E8%87%AA%E5%AE%9A%E4%B9%89extrator)。
 
 GEO索引数据的value跟原始数据的value完全相同。这里会存在一份冗余,但通常在相对廉价的磁盘存储介质上,这是可以接受的。
 
@@ -127,7 +127,7 @@ GEO索引数据的value跟原始数据的value完全相同。这里会存在一
 
 > `set`操作的hashkey, sortkey是业务自己的格式,使用GEO API时并不做约束, 只是在geo client转存GEO索引数据时,会自动做如上所述的编码转换。
 
-> 使用Redis API时, 参考 [GEO API](https://pegasus-kv.github.io/api/redis#geo-api)。
+> 使用Redis API时, 参考 [GEO API](https://pegasus.apache.org/api/redis#geo-api)。
 
 > 实现上,`set`会首先尝试`get`出已有的数据,并将已有数据的GEO索引数据清理掉后,再写入新数据。因为新老数据的索引数据hashkey+sortkey可能不一样(即新老value根据extractor解析得到的经纬度不一样),若不清理,在进行地理搜索时将会搜索到脏数据。
 
diff --git a/_community/proposal.md b/_community/proposal.md
index dc96132..1b80f22 100644
--- a/_community/proposal.md
+++ b/_community/proposal.md
@@ -9,7 +9,7 @@ Pegasus is a distributed key-value storage system which is designed to
 be horizontally scalable, strongly consistent and high-performance.
 
 - Pegasus codebase: <https://github.com/XiaoMi/pegasus>
-- Website: <https://pegasus-kv.github.io>
+- Website: <https://pegasus.apache.org>
 
 ## Proposal
 
@@ -168,11 +168,11 @@ a marketing tool.
 Information about Pegasus can be found at <https://github.com/XiaoMi/pegasus>.
 The following links provide more information about Pegasus in open source:
 
-- Pegasus Website: <https://pegasus-kv.github.io>
+- Pegasus Website: <https://pegasus.apache.org>
 - Codebase at Github: <https://github.com/XiaoMi/pegasus>
 - Issue Tracking: <https://github.com/XiaoMi/pegasus/issues>
-- Releases: <https://pegasus-kv.github.io/releases>
-- Community Guide: <https://pegasus-kv.github.io/community> 
+- Releases: <https://pegasus.apache.org/releases>
+- Community Guide: <https://pegasus.apache.org/community>
 
 ## Initial Source
 
diff --git a/_config.yml b/_config.yml
index e68d056..f5fb2ce 100755
--- a/_config.yml
+++ b/_config.yml
@@ -65,7 +65,6 @@ defaults:
       header_style: is-black
 
 algolia:
-  application_id: 50E27EHNIK
   index_name: apache_pegasus
   search_only_api_key: 676624c2d6dc00808d3b7cf6724fc3c8
   powered_by: true
diff --git a/_includes/algolia.html b/_includes/algolia.html
index c36ec59..83936c3 100644
--- a/_includes/algolia.html
+++ b/_includes/algolia.html
@@ -5,7 +5,6 @@
 
 <script>
     docsearch({
-        appId: '{{ site.algolia.application_id }}',
         indexName: '{{ site.algolia.index_name }}',
         apiKey: '{{ site.algolia.search_only_api_key }}',
         inputSelector: '.searchbox-input',
@@ -20,4 +19,4 @@
         $('.navbar-searchbox .border').animate({ left: '0', width: '0' })
         $('.searchbox-icon').css({ color: 'hsl(0, 0%, 86%)' })
     })
-</script>
\ No newline at end of file
+</script>
diff --git a/_posts/2019-06-09-how-i-build-pegasus-website.md b/_posts/2019-06-09-how-i-build-pegasus-website.md
index 2c0d7e2..ae11054 100644
--- a/_posts/2019-06-09-how-i-build-pegasus-website.md
+++ b/_posts/2019-06-09-how-i-build-pegasus-website.md
@@ -27,8 +27,8 @@ Github,那么它和一个非商业的闭源软件没有本质上的区别。Pe
 
 ## 这个网站部署在哪里?
 
-这个网站使用 Github Pages 部署。项目地址在:[pegasus-kv/pegasus-kv.github.io](https://github.com/pegasus-kv/pegasus-kv.github.io)。
-master 分支的代码就对应这个网站的全部内容。提交至 master 后,Github Page 会自动将网站部署至 <https://pegasus-kv.github.io/> 上。
+这个网站使用 Github Pages 部署。项目地址在:[apache/incubator-pegasus-website](https://github.com/apache/incubator-pegasus-website)。
+master 分支的代码就对应这个网站的全部内容。提交至 master 后,Github Page 会自动将网站部署至 <https://pegasus.apache.org/> 上。
 
 ## 开发环境
 
@@ -41,7 +41,7 @@ jekyll 是用 Ruby 开发的,所以你首先需要安装 Ruby,首选的方
 最后你只需要在本地安装 jekyll 和 bundler:
 
 ```bash
-cd pegasus-kv.github.io
+cd pegasus.apache.org
 gem install bundler jekyll
 bundle
 jekyll serve
diff --git a/_posts/2020-02-06-partition-split-design.md b/_posts/2020-02-06-partition-split-design.md
index 5d44ef7..2cc210e 100644
--- a/_posts/2020-02-06-partition-split-design.md
+++ b/_posts/2020-02-06-partition-split-design.md
@@ -4,7 +4,7 @@ layout: post
 author: 何昱晨
 ---
 
-关于partition split的基本概念和操作示例可以参照 [administration/partition-split](https://pegasus-kv.github.io/administration/partition-split),这里将主要描述partition split的设计和实现细节。
+关于partition split的基本概念和操作示例可以参照 [administration/partition-split](https://pegasus.apache.org/administration/partition-split),这里将主要描述partition split的设计和实现细节。
 
 -----
 
diff --git a/_releases/index.md b/_releases/index.md
index 88c75a6..6b3326e 100644
--- a/_releases/index.md
+++ b/_releases/index.md
@@ -18,7 +18,7 @@ The following are the highlights in this release:
 ## Duplication
 
 Duplication is the solution of Pegasus for intra-cluster data copying in real-time. We currently limit our master-master duplication for 'PUT' and 'MULTI_PUT' only. See this document for more details:
-<https://pegasus-kv.github.io/administration/duplication>
+<https://pegasus.apache.org/administration/duplication>
 
 ## Backup Request
 
diff --git a/_releases/v1.11.6.md b/_releases/v1.11.6.md
index 26188a1..9c08f39 100644
--- a/_releases/v1.11.6.md
+++ b/_releases/v1.11.6.md
@@ -17,7 +17,7 @@ Server connection threshold support: [XiaoMi/rdsn#234](https://github.com/XiaoMi
 
 Whitelist support: [XiaoMi/rdsn#228](https://github.com/XiaoMi/rdsn/pull/228), [XiaoMi/rdsn#226](https://github.com/XiaoMi/rdsn/pull/226)
 
-Related Docs: <https://pegasus-kv.github.io/administration/whitelist>
+Related Docs: <https://pegasus.apache.org/administration/whitelist>
 
 ## Optimization of Memory Usage
 
diff --git a/_releases/v1.12.0.md b/_releases/v1.12.0.md
index ece4c28..405bca0 100644
--- a/_releases/v1.12.0.md
+++ b/_releases/v1.12.0.md
@@ -9,7 +9,7 @@ We exposed many metadata of a Pegasus cluster and some system states of a Pegasu
 
 Related PR: [XiaoMi/rdsn#280](https://github.com/XiaoMi/rdsn/pull/280), [#360](https://github.com/XiaoMi/pegasus/pull/360), [XiaoMi/rdsn#321](https://github.com/XiaoMi/rdsn/pull/321), [XiaoMi/rdsn#296](https://github.com/XiaoMi/rdsn/pull/296)
 
-Related Docs: <https://pegasus-kv.github.io/api/http>
+Related Docs: <https://pegasus.apache.org/api/http>
 
 ## Multi-tenant Support
 


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