You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ki...@apache.org on 2012/12/11 23:59:27 UTC

git commit: Minor documentation fixes

Updated Branches:
  refs/heads/master 9dfbb2ec8 -> ebbccc3c7


Minor documentation fixes


Project: http://git-wip-us.apache.org/repos/asf/incubator-helix/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-helix/commit/ebbccc3c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-helix/tree/ebbccc3c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-helix/diff/ebbccc3c

Branch: refs/heads/master
Commit: ebbccc3c70f46a577362d521cddcc3858c630bc0
Parents: 9dfbb2e
Author: Kishore Gopalakrishna <g....@gmail.com>
Authored: Tue Dec 11 14:59:13 2012 -0800
Committer: Kishore Gopalakrishna <g....@gmail.com>
Committed: Tue Dec 11 14:59:13 2012 -0800

----------------------------------------------------------------------
 deploySite.sh                                      |    5 ++++-
 src/site/markdown/Quickstart.md                    |    2 +-
 .../recipes/rsync_replicated_file_store.md         |    6 +++---
 3 files changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/ebbccc3c/deploySite.sh
----------------------------------------------------------------------
diff --git a/deploySite.sh b/deploySite.sh
index c876c99..8066865 100644
--- a/deploySite.sh
+++ b/deploySite.sh
@@ -1 +1,4 @@
-mvn clean site-deploy scm-publish:publish-scm $@
+read -s -p "Enter Apache Username: " myusername
+echo ""
+read -s -p "Enter Apache Password: " mypassword
+echo "mvn clean site-deploy scm-publish:publish-scm -Dusername=$myusername -Dpassword=$mypassword -DskipTests $@"

http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/ebbccc3c/src/site/markdown/Quickstart.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/Quickstart.md b/src/site/markdown/Quickstart.md
index 4dcda32..788602e 100644
--- a/src/site/markdown/Quickstart.md
+++ b/src/site/markdown/Quickstart.md
@@ -25,7 +25,7 @@ Build
 
 Jump to download section to skip building code
 
-    git clone http://git-wip-us.apache.org/repos/asf/incubator-helix.git
+    git clone https://git-wip-us.apache.org/repos/asf/incubator-helix.git
     cd incubator-helix
     mvn install package -DskipTests 
     cd helix-core/target/helix-core-pkg/bin //This folder contains all the scripts used in following sections

http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/ebbccc3c/src/site/markdown/recipes/rsync_replicated_file_store.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/recipes/rsync_replicated_file_store.md b/src/site/markdown/recipes/rsync_replicated_file_store.md
index 290d128..ffc6419 100644
--- a/src/site/markdown/recipes/rsync_replicated_file_store.md
+++ b/src/site/markdown/recipes/rsync_replicated_file_store.md
@@ -32,15 +32,15 @@ There are many applications that require storage for storing large number of rel
 
 These are much simpler requirements than what general purpose distributed file system have to satisfy including concurrent access to files, random access for reads and updates, posix compliance etc. To satisfy those requirements, general DFSs are also pretty complex that are expensive to build and maintain.
  
-A different implementation of a distributed file system includes HDFS which is inspired by Google�s GFS. This is one of the most widely used distributed file system that forms the main data storage platform for Hadoop. HDFS is primary aimed at processing very large data sets and distributes files across a cluster of commodity servers by splitting up files in fixed size chunks. HDFS is not particularly well suited for storing a very large number of relatively tiny files.
+A different implementation of a distributed file system includes HDFS which is inspired by Google's GFS. This is one of the most widely used distributed file system that forms the main data storage platform for Hadoop. HDFS is primary aimed at processing very large data sets and distributes files across a cluster of commodity servers by splitting up files in fixed size chunks. HDFS is not particularly well suited for storing a very large number of relatively tiny files.
 
 ### File Store
 
-It�s possible to build a vastly simpler system for the class of applications that have simpler requirements as we have pointed out.
+It's possible to build a vastly simpler system for the class of applications that have simpler requirements as we have pointed out.
 
 * Large number of files but each file is relatively small.
 * Access is limited to create, delete and get entire files.
-* No updates to files that are already created (or it�s feasible to delete the old file and create a new one).
+* No updates to files that are already created (or it's feasible to delete the old file and create a new one).
  
 
 We call this system a Partitioned File Store (PFS) to distinguish it from other distributed file systems. This system needs to provide the following features: