You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2016/01/18 12:25:01 UTC

ignite git commit: IGNITE-2348 Fixed readme

Repository: ignite
Updated Branches:
  refs/heads/ignite-843-rc2 42e126770 -> 7b3d6ff24


IGNITE-2348 Fixed readme


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

Branch: refs/heads/ignite-843-rc2
Commit: 7b3d6ff2414cebd55a5cbd56b9dce635ae4812d8
Parents: 42e1267
Author: Andrey <an...@gridgain.com>
Authored: Mon Jan 18 18:25:18 2016 +0700
Committer: Andrey <an...@gridgain.com>
Committed: Mon Jan 18 18:25:18 2016 +0700

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/7b3d6ff2/modules/control-center-agent/README.txt
----------------------------------------------------------------------
diff --git a/modules/control-center-agent/README.txt b/modules/control-center-agent/README.txt
index 295b90c..1fb94d2 100644
--- a/modules/control-center-agent/README.txt
+++ b/modules/control-center-agent/README.txt
@@ -29,16 +29,17 @@ Demo of Ignite Web Agent:
     2) Demo for SQL.
        In this mode internal Ignite node will be started. Cache created and populated with data.
        How to evaluate:
-       2.1) Go to Ignite Web Console "SQL" menu and select "Create new notebook" menu item.
-       2.2) In notebook paragraph enter SQL queries for tables: "Country, Department, Employee" in "demo-employee" cache
-        and for tables: "Parking, Car" in "demo-car" cache.
+       2.1) Go to Ignite Web Console "SQL" menu and select "SQL demo" menu item.
+       2.2) In "SQL demo" notebook paragraph enter SQL queries for tables: "Country, Department, Employee", "Parking, Car".
 
        For example:
-        2.3) select "demo-car" cache,
+        2.3) select "ParkingCache" cache,
         2.4) Enter SQL statement:
-                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
+                SELECT p.name, count(*) AS cnt
+                FROM "ParkingCache".Parking p
+                INNER JOIN "CarCache".Car c
+                  ON (p.id) = (c.parkingId)
+                GROUP BY P.NAME
         2.5) Click "Execute" button. You should get some data in table.
         2.6) Click charts buttons to see auto generated charts.