You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/09/07 15:45:52 UTC

ignite git commit: IGNITE-843 Updated README.txt

Repository: ignite
Updated Branches:
  refs/heads/ignite-843 281031727 -> aec68a4d9


IGNITE-843 Updated README.txt


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

Branch: refs/heads/ignite-843
Commit: aec68a4d90f996484f4aa6983c05d2cfed9da7a8
Parents: 2810317
Author: AKuznetsov <ak...@gridgain.com>
Authored: Mon Sep 7 20:45:45 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Mon Sep 7 20:45:45 2015 +0700

----------------------------------------------------------------------
 modules/control-center-agent/README.txt | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/aec68a4d/modules/control-center-agent/README.txt
----------------------------------------------------------------------
diff --git a/modules/control-center-agent/README.txt b/modules/control-center-agent/README.txt
index f20dfe8..5094ca3 100644
--- a/modules/control-center-agent/README.txt
+++ b/modules/control-center-agent/README.txt
@@ -17,23 +17,28 @@ Test drive of Ignite Web Agent:
     In order to simplify evaluation two test drive modes were implemented:
 
     1) Test drive for metadata load from database. Activated by option: -tm or --test-drive-metadata.
-       In this mode an in-memory H2 database will started and could be acessed via JDBC URL: jdbc:h2:mem:test-drive-db.
-       How to evaluate: go to Ignite Web Control Center "Metadata" screen, select "Load from database" and enter JDBC URL.
-       You should see list of available schemas and tables. Select some of them and click "Save".
+       In this mode an in-memory H2 database will started.
+       How to evaluate:
+         1.1) Go to Ignite Web Control Center "Metadata" screen.
+         1.2) Select "Load from database".
+         1.3) Select H2 driver and enter JDBC URL: "jdbc:h2:mem:test-drive-db".
+         1.4) You should see list of available schemas and tables. Select some of them and click "Save".
 
     2) Test drive for SQL. Activated by option: -ts or --test-drive-sql.
        In this mode internal Ignite node will be started. Cache created and populated with data.
-       How to evaluate: go to Ignite Web Control Center "SQL" menu, create new notebook.
-       In notebook paragraph enter SQL queries for tables: "Country, Department, Employee" in "test-drive-employee" cache
+       How to evaluate:
+       2.1) Go to Ignite Web Control Center "SQL" menu and select "Create new notebook" menu item.
+       2.2) In notebook paragraph enter SQL queries for tables: "Country, Department, Employee" in "test-drive-employee" cache
         and for tables: "Parking, Car" in "test-drive-car" cache.
 
        For example:
-        2.1) select "test-drive-car" cache,
-        2.2) enter SQL:
+        2.3) select "test-drive-car" cache,
+        2.4) enter SQL:
                 select count(*) cnt, p.ParkingName from car c
                  inner join PARKING p on (p.PARKINGID=c.PARKINGID)
                 group by c.PARKINGID order by p.ParkingName
-        2.3) Click "Execute" button. You should get some data in table. Click charts buttons to see auto generated charts.
+        2.5) Click "Execute" button. You should get some data in table.
+        2.6) Click charts buttons to see auto generated charts.
 
 Configuration file:
     Should be a file with simple line-oriented format as described here: http://docs.oracle.com/javase/7/docs/api/java/util/Properties.html#load(java.io.Reader)