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

kturner pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 696c362  Jekyll build from gh-pages:7ff0f7c
696c362 is described below

commit 696c362cdd5f709cd9158d46a0dcfd3c29312400
Author: Keith Turner <[email protected]>
AuthorDate: Fri Mar 6 16:18:53 2020 -0500

    Jekyll build from gh-pages:7ff0f7c
    
    Fix command syntax to use -a for application name (#190)
---
 docs/fluo/1.2/administration/initialize.html          | 4 ++--
 docs/fluo/1.2/administration/manage-applications.html | 4 ++--
 docs/fluo/1.2/administration/run-fluo-processes.html  | 6 +++---
 feed.xml                                              | 4 ++--
 search_data.json                                      | 6 +++---
 5 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/fluo/1.2/administration/initialize.html 
b/docs/fluo/1.2/administration/initialize.html
index 0e7207d..4887851 100644
--- a/docs/fluo/1.2/administration/initialize.html
+++ b/docs/fluo/1.2/administration/initialize.html
@@ -257,7 +257,7 @@ be idle when started.</p>
   <li>
     <p>Run the command below to initialize your Fluo application. Change <code 
class="highlighter-rouge">myapp</code> to your application name:</p>
 
-    <div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code> fluo init myapp /path/to/myapp/fluo-app.properties
+    <div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code> fluo init -a myapp -p 
/path/to/myapp/fluo-app.properties
 </code></pre></div>    </div>
 
     <p>A Fluo application only needs to be initialized once. After 
initialization, the Fluo application
@@ -267,7 +267,7 @@ name is used to start/stop the application and scan the 
Fluo table.</p>
     <p>Run <code class="highlighter-rouge">fluo list</code> which connects to 
Fluo and lists applications to verify initialization.</p>
   </li>
   <li>
-    <p>Run <code class="highlighter-rouge">fluo config myapp</code> to see 
what configuration is stored in ZooKeeper.</p>
+    <p>Run <code class="highlighter-rouge">fluo config -a myapp</code> to see 
what configuration is stored in ZooKeeper.</p>
   </li>
 </ol>
 
diff --git a/docs/fluo/1.2/administration/manage-applications.html 
b/docs/fluo/1.2/administration/manage-applications.html
index c01eb75..b0309b7 100644
--- a/docs/fluo/1.2/administration/manage-applications.html
+++ b/docs/fluo/1.2/administration/manage-applications.html
@@ -200,8 +200,8 @@
 
 <h2 id="viewing-data">Viewing data</h2>
 
-<p>When you have data in your Fluo application, you can view it using the 
command <code class="highlighter-rouge">fluo scan myapp</code>. 
-Pipe the output to <code class="highlighter-rouge">less</code> using the 
command <code class="highlighter-rouge">fluo scan myapp | less</code> if you 
want to page through the data.</p>
+<p>When you have data in your Fluo application, you can view it using the 
command <code class="highlighter-rouge">fluo scan -a myapp</code>. 
+Pipe the output to <code class="highlighter-rouge">less</code> using the 
command <code class="highlighter-rouge">fluo scan -a myapp | less</code> if you 
want to page through the data.</p>
 
 <h2 id="get-status-of-all-applications">Get status of all applications</h2>
 
diff --git a/docs/fluo/1.2/administration/run-fluo-processes.html 
b/docs/fluo/1.2/administration/run-fluo-processes.html
index 421fe6f..d9c3871 100644
--- a/docs/fluo/1.2/administration/run-fluo-processes.html
+++ b/docs/fluo/1.2/administration/run-fluo-processes.html
@@ -216,9 +216,9 @@ can be manually started by users on a single node or 
distributed across a cluste
 are typically run with one oracle process and multiple worker processes. The 
commands below will start
 a Fluo oracle and two workers on your local machine:</p>
 
-    <div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code> fluo oracle myapp &amp;&gt; oracle.log &amp;
- fluo worker myapp &amp;&gt; worker1.log &amp;
- fluo worker myapp &amp;&gt; worker2.log &amp;
+    <div class="highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code> fluo oracle -a myapp &amp;&gt; oracle.log &amp;
+ fluo worker -a myapp &amp;&gt; worker1.log &amp;
+ fluo worker -a myapp &amp;&gt; worker2.log &amp;
 </code></pre></div>    </div>
 
     <p>The commands will retrieve your application configuration and observer 
jars (using your
diff --git a/feed.xml b/feed.xml
index 1cd7e4a..ee06e82 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,8 +5,8 @@
     <description>Apache Fluo Website</description>
     <link>https://fluo.apache.org//</link>
     <atom:link href="https://fluo.apache.org//feed.xml"; rel="self" 
type="application/rss+xml" />
-    <pubDate>Thu, 06 Feb 2020 00:09:38 +0000</pubDate>
-    <lastBuildDate>Thu, 06 Feb 2020 00:09:38 +0000</lastBuildDate>
+    <pubDate>Fri, 06 Mar 2020 21:18:48 +0000</pubDate>
+    <lastBuildDate>Fri, 06 Mar 2020 21:18:48 +0000</lastBuildDate>
     <generator>Jekyll v3.8.5</generator>
     
     
diff --git a/search_data.json b/search_data.json
index a725f39..17c9727 100644
--- a/search_data.json
+++ b/search_data.json
@@ -2,14 +2,14 @@
   
     "docs-fluo-1-2-administration-initialize": {
       "title": "Initialize Application",
-      "content"         : "OverviewBefore a Fluo Application can run, it must 
be initialized.  Below is an overview of whatinitialization does and some of 
the properties that may be set for initialization.  Initialize ZooKeeper - Each 
application has its own area in ZooKeeper used for configuration,Oracle state, 
and worker coordination. All properties, except fluo.connections.*, are 
copiedinto ZooKeeper. For example, if fluo.worker.num.threads=128 was set, then 
when a worker processstarts it wi [...]
+      "content"         : "OverviewBefore a Fluo Application can run, it must 
be initialized.  Below is an overview of whatinitialization does and some of 
the properties that may be set for initialization.  Initialize ZooKeeper - Each 
application has its own area in ZooKeeper used for configuration,Oracle state, 
and worker coordination. All properties, except fluo.connections.*, are 
copiedinto ZooKeeper. For example, if fluo.worker.num.threads=128 was set, then 
when a worker processstarts it wi [...]
       "url": " /docs/fluo/1.2/administration/initialize",
       "categories": "administration"
     },
   
     "docs-fluo-1-2-administration-manage-applications": {
       "title": "Manage Applications",
-      "content"         : "This page contains information on managing Fluo 
applications.Viewing dataWhen you have data in your Fluo application, you can 
view it using the command fluo scan myapp. Pipe the output to less using the 
command fluo scan myapp | less if you want to page through the data.Get status 
of all applicationsTo list all Fluo applications, run fluo list.Running 
application codeThe fluo exec &amp;lt;app name&amp;gt; &amp;lt;class&amp;gt; 
{arguments} provides an easy way to execu [...]
+      "content"         : "This page contains information on managing Fluo 
applications.Viewing dataWhen you have data in your Fluo application, you can 
view it using the command fluo scan -a myapp. Pipe the output to less using the 
command fluo scan -a myapp | less if you want to page through the data.Get 
status of all applicationsTo list all Fluo applications, run fluo list.Running 
application codeThe fluo exec &amp;lt;app name&amp;gt; &amp;lt;class&amp;gt; 
{arguments} provides an easy way to [...]
       "url": " /docs/fluo/1.2/administration/manage-applications",
       "categories": "administration"
     },
@@ -37,7 +37,7 @@
   
     "docs-fluo-1-2-administration-run-fluo-processes": {
       "title": "Run Fluo processes",
-      "content"         : "An Apache Fluo application consists of an oracle 
process and multiple worker processes.  These processescan be manually started 
by users on a single node or distributed across a cluster.RequirementsEach node 
where Fluo is run must have Fluo installed.Start Fluo processesFollow the 
instructions below to start Fluo processes.      Configure fluo-env.sh and 
fluo-conn.properties if you have not already.        Run Fluo application 
processes using the fluo oracle and fluo  [...]
+      "content"         : "An Apache Fluo application consists of an oracle 
process and multiple worker processes.  These processescan be manually started 
by users on a single node or distributed across a cluster.RequirementsEach node 
where Fluo is run must have Fluo installed.Start Fluo processesFollow the 
instructions below to start Fluo processes.      Configure fluo-env.sh and 
fluo-conn.properties if you have not already.        Run Fluo application 
processes using the fluo oracle and fluo  [...]
       "url": " /docs/fluo/1.2/administration/run-fluo-processes",
       "categories": "administration"
     },

Reply via email to